From e267838d2372bbd95bdd6cd928ce5861efeed24b Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Tue, 17 Nov 2020 14:32:45 -0500 Subject: [PATCH] fix doc --- src/Tiny_httpd.mli | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Tiny_httpd.mli b/src/Tiny_httpd.mli index a733943c..20314c73 100644 --- a/src/Tiny_httpd.mli +++ b/src/Tiny_httpd.mli @@ -228,10 +228,9 @@ module Request : sig and headers are read; then it has a stream body; then the body might be entirely read as a string via {!read_body_full}. - The field [query] was added @since 0.6 and contains - the query parameters in ["?foo=bar,x=y"] - The field [path_components] is the part of the path that precedes [query] - and is split on ["/"] and was added @since 0.6 + @since 0.6 The field [query] was added and contains the query parameters in ["?foo=bar,x=y"] + + @since 0.6 The field [path_components] is the part of the path that precedes [query] and is split on ["/"]. *) val pp : Format.formatter -> string t -> unit