aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cowboy_req.erl6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cowboy_req.erl b/src/cowboy_req.erl
index 5633182..60dc86a 100644
--- a/src/cowboy_req.erl
+++ b/src/cowboy_req.erl
@@ -160,7 +160,11 @@
charset => binary() | undefined,
range => {binary(), binary()
| [{non_neg_integer(), non_neg_integer() | infinity} | neg_integer()]},
- websocket_version => 7 | 8 | 13
+ websocket_version => 7 | 8 | 13,
+
+ %% The user is encouraged to use the Req to store information
+ %% when no better solution is available.
+ _ => _
}.
-export_type([req/0]).