Browse Source

Fix indentation

Tim Fletcher 12 years ago
parent
commit
3f1c28e9bc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/oauth.erl

+ 1 - 1
src/oauth.erl

@@ -36,7 +36,7 @@ post(URL, ExtraParams, Consumer, Token, TokenSecret, HttpcOptions) ->
   http_post(URL, uri_params_encode(SignedParams), HttpcOptions).
   http_post(URL, uri_params_encode(SignedParams), HttpcOptions).
 
 
 put(URL, ExtraParams, {ContentType, Body}, Consumer, Token, TokenSecret) ->
 put(URL, ExtraParams, {ContentType, Body}, Consumer, Token, TokenSecret) ->
-    put(URL, ExtraParams, {ContentType, Body}, Consumer, Token, TokenSecret, []).
+  put(URL, ExtraParams, {ContentType, Body}, Consumer, Token, TokenSecret, []).
 
 
 put(URL, ExtraParams, {ContentType, Body}, Consumer, Token, TokenSecret, HttpcOptions) ->
 put(URL, ExtraParams, {ContentType, Body}, Consumer, Token, TokenSecret, HttpcOptions) ->
   SignedParams = sign("PUT", URL, ExtraParams, Consumer, Token, TokenSecret),
   SignedParams = sign("PUT", URL, ExtraParams, Consumer, Token, TokenSecret),