summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2020-03-25 02:57:18 +0530
committerLudovic Courtès <ludo@gnu.org>2020-06-18 00:30:30 +0200
commit782a5af969b65bbcd00a51877dd28b7ba8b34fd1 (patch)
treef136fe7177c8196bd7a5ba827bd78bd9422dda82
parent3f279562fff0b581ce5d0f6cb388a45d3bd2a0d4 (diff)
downloadguile-782a5af969b65bbcd00a51877dd28b7ba8b34fd1.tar.gz
doc: Improve content-range HTTP header documentation.
* doc/ref/web.texi (HTTP Headers): Improve punctuation in content-range HTTP header documentation. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--doc/ref/web.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ref/web.texi b/doc/ref/web.texi
index 31630def7..93cd0214f 100644
--- a/doc/ref/web.texi
+++ b/doc/ref/web.texi
@@ -772,11 +772,11 @@ The MD5 digest of a resource.
@end deftypevr
@deftypevr {HTTP Header} List content-range
-A range specification, as a list of three elements: the symbol
-@code{bytes}, either the symbol @code{*} or a pair of integers,
-indicating the byte range, and either @code{*} or an integer, for the
-instance length. Used to indicate that a response only includes part of
-a resource.
+Range specification as a list of three elements: the symbol
+@code{bytes}, either the symbol @code{*} or a pair of integers
+indicating the byte range, and either @code{*} or an integer indicating
+the instance length. Used to indicate that a response only includes
+part of a resource.
@example
(parse-header 'content-range "bytes 10-20/*")
@result{} (bytes (10 . 20) *)