aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSeletskiy Stanislav <[email protected]>2013-04-26 18:34:10 +0700
committerSeletskiy Stanislav <[email protected]>2013-04-26 18:34:10 +0700
commit72a9ccacdd5fead8f9c45a8a38327382be8534d8 (patch)
treea84368f284b4c9ad6f519187294eba6ddc8362de /src
parentf316b47d13bfd67834ee6335bb5b8bb495c6c6f8 (diff)
downloadcowboy-72a9ccacdd5fead8f9c45a8a38327382be8534d8.tar.gz
cowboy-72a9ccacdd5fead8f9c45a8a38327382be8534d8.tar.bz2
cowboy-72a9ccacdd5fead8f9c45a8a38327382be8534d8.zip
Fix indenting issues in `cowboy_rest.erl`
Diffstat (limited to 'src')
-rw-r--r--src/cowboy_rest.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cowboy_rest.erl b/src/cowboy_rest.erl
index 9757b85..4ba2b47 100644
--- a/src/cowboy_rest.erl
+++ b/src/cowboy_rest.erl
@@ -237,7 +237,7 @@ content_types_provided(Req, State) ->
{[], Req2, HandlerState} ->
not_acceptable(Req2, State#state{handler_state=HandlerState});
{CTP, Req2, HandlerState} ->
- CTP2 = [normalize_content_types(P) || P <- CTP],
+ CTP2 = [normalize_content_types(P) || P <- CTP],
State2 = State#state{
handler_state=HandlerState, content_types_p=CTP2},
case cowboy_req:parse_header(<<"accept">>, Req2) of
@@ -256,7 +256,7 @@ content_types_provided(Req, State) ->
normalize_content_types({ContentType, Callback})
when is_binary(ContentType) ->
- {cowboy_http:content_type(ContentType), Callback};
+ {cowboy_http:content_type(ContentType), Callback};
normalize_content_types(Normalized) ->
Normalized.
@@ -791,7 +791,7 @@ accept_resource(Req, State) ->
{halt, Req2, HandlerState} ->
terminate(Req2, State#state{handler_state=HandlerState});
{CTA, Req2, HandlerState} ->
- CTA2 = [normalize_content_types(P) || P <- CTA],
+ CTA2 = [normalize_content_types(P) || P <- CTA],
State2 = State#state{handler_state=HandlerState},
case cowboy_req:parse_header(<<"content-type">>, Req2) of
{ok, ContentType, Req3} ->