aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-09-29 13:16:48 +0200
committerLoïc Hoguin <[email protected]>2012-09-29 13:16:48 +0200
commitb4d1407d63244df90b6c7c3fbf909fed4ad00020 (patch)
tree4f95bb428e2b8e39196c162e79d3eee4f1e854b4 /src
parentce9aff19f036310dd33d00d14cff35a559b8ccb1 (diff)
downloadcowboy-b4d1407d63244df90b6c7c3fbf909fed4ad00020.tar.gz
cowboy-b4d1407d63244df90b6c7c3fbf909fed4ad00020.tar.bz2
cowboy-b4d1407d63244df90b6c7c3fbf909fed4ad00020.zip
Fix a small edoc issue
Diffstat (limited to 'src')
-rw-r--r--src/cowboy_req.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy_req.erl b/src/cowboy_req.erl
index 05ea9a1..65e131f 100644
--- a/src/cowboy_req.erl
+++ b/src/cowboy_req.erl
@@ -1228,7 +1228,7 @@ parse_connection_after(<< C, Rest/bits >>, Acc)
%% @doc Walk through a tokens list and return whether
%% the connection is keepalive or closed.
%%
-%% We don't match on <<"keep-alive">> since it is the default value.
+%% We don't match on "keep-alive" since it is the default value.
-spec connection_to_atom([binary()]) -> keepalive | close.
connection_to_atom([]) ->
keepalive;