0
Fork 0
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:
Loïc Hoguin 2011-03-27 01:07:01 +01:00
parent e69597f29e
commit c285f00349

View file

@ -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(),