mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Fix the type spec for qs_vals, a list of key/values.
This commit is contained in:
parent
e69597f29e
commit
c285f00349
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
||||||
raw_host = undefined :: undefined | string(),
|
raw_host = undefined :: undefined | string(),
|
||||||
path = undefined :: undefined | '*' | path_tokens(),
|
path = undefined :: undefined | '*' | path_tokens(),
|
||||||
raw_path = undefined :: undefined | string(),
|
raw_path = undefined :: undefined | string(),
|
||||||
qs_vals = undefined :: undefined | bindings(),
|
qs_vals = undefined :: undefined | list({Name::string(), Value::string() | true}),
|
||||||
raw_qs = undefined :: undefined | string(),
|
raw_qs = undefined :: undefined | string(),
|
||||||
bindings = undefined :: undefined | bindings(),
|
bindings = undefined :: undefined | bindings(),
|
||||||
headers = [] :: http_headers(),
|
headers = [] :: http_headers(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue