]> matita.cs.unibo.it Git - helm.git/commitdiff
moved an ocamldoc comment to .mli
authorStefano Zacchiroli <zack@upsilon.cc>
Mon, 3 Feb 2003 20:46:34 +0000 (20:46 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Mon, 3 Feb 2003 20:46:34 +0000 (20:46 +0000)
helm/DEVEL/ocaml-http/http_parser.ml

index c8870ab186729fe29c313cf141ca67a9cbfbf69c..7ab21be7f58599914b50d97c309bfa535e552be7 100644 (file)
@@ -31,11 +31,6 @@ let header_RE = Pcre.regexp "([^:]*):(.*)"
 
 let url_decode url = Netencoding.Url.decode ~plus:true url
 
-  (** given an HTTP like query string (e.g. "name1=value1&name2=value2&...")
-  @return a list of pairs [("name1", "value1"); ("name2", "value2")]
-  @raise Malformed_query if the string isn't a valid query string
-  @raise Malformed_query_part if some piece of the query isn't valid
-  *)
 let split_query_params query =
   let bindings = Pcre.split ~rex:bindings_sep query in
   match bindings with