aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2011-06-30 01:11:11 +0200
committerLoïc Hoguin <[email protected]>2011-06-30 01:11:11 +0200
commit6b1fb5f39058992aca907e792550a077edbe264e (patch)
tree357d72670f958d7a81976f82847006111d4c02b9 /src
parent58267689f09cb6a4526da760f48d5fb7ccc59b2c (diff)
downloadcowboy-6b1fb5f39058992aca907e792550a077edbe264e.tar.gz
cowboy-6b1fb5f39058992aca907e792550a077edbe264e.tar.bz2
cowboy-6b1fb5f39058992aca907e792550a077edbe264e.zip
Fix the @equiv EDoc tags
Diffstat (limited to 'src')
-rw-r--r--src/cowboy_http_req.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cowboy_http_req.erl b/src/cowboy_http_req.erl
index c2f2d2d..c9aa5c7 100644
--- a/src/cowboy_http_req.erl
+++ b/src/cowboy_http_req.erl
@@ -89,7 +89,7 @@ raw_path(Req) ->
-spec qs_val(binary(), #http_req{})
-> {binary() | true | undefined, #http_req{}}.
-%% @equiv qs_val(Name, Req) -> qs_val(Name, Req, undefined)
+%% @equiv qs_val(Name, Req, undefined)
qs_val(Name, Req) ->
qs_val(Name, Req, undefined).
@@ -116,7 +116,7 @@ raw_qs(Req) ->
{Req#http_req.raw_qs, Req}.
-spec binding(atom(), #http_req{}) -> {binary() | undefined, #http_req{}}.
-%% @equiv binding(Name, Req) -> binding(Name, Req, undefined)
+%% @equiv binding(Name, Req, undefined)
binding(Name, Req) ->
binding(Name, Req, undefined).
@@ -134,7 +134,7 @@ bindings(Req) ->
-spec header(atom() | binary(), #http_req{})
-> {binary() | undefined, #http_req{}}.
-%% @equiv header(Name, Req) -> header(Name, Req, undefined)
+%% @equiv header(Name, Req, undefined)
header(Name, Req) ->
header(Name, Req, undefined).