diff options
author | Loïc Hoguin <[email protected]> | 2011-03-27 01:07:01 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-03-27 01:07:01 +0100 |
commit | c285f0034909306449fcc674b3a3fa314533b331 (patch) | |
tree | d4ca0e7852a410c0b689fe5313d2e3bba7739299 /include | |
parent | e69597f29e2e4946accbef1fc33b84ddeb915630 (diff) | |
download | cowboy-c285f0034909306449fcc674b3a3fa314533b331.tar.gz cowboy-c285f0034909306449fcc674b3a3fa314533b331.tar.bz2 cowboy-c285f0034909306449fcc674b3a3fa314533b331.zip |
Fix the type spec for qs_vals, a list of key/values.
Diffstat (limited to 'include')
-rw-r--r-- | include/http.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http.hrl b/include/http.hrl index 72e60fb..a3b2e9b 100644 --- a/include/http.hrl +++ b/include/http.hrl @@ -26,7 +26,7 @@ raw_host = undefined :: undefined | string(), path = undefined :: undefined | '*' | path_tokens(), 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(), bindings = undefined :: undefined | bindings(), headers = [] :: http_headers(), |