Browse Source

Fix the type spec for qs_vals, a list of key/values.

Loïc Hoguin 14 years ago
parent
commit
c285f00349
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/http.hrl

+ 1 - 1
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(),