diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2020-03-25 02:57:18 +0530 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-18 00:30:30 +0200 |
commit | 782a5af969b65bbcd00a51877dd28b7ba8b34fd1 (patch) | |
tree | f136fe7177c8196bd7a5ba827bd78bd9422dda82 | |
parent | 3f279562fff0b581ce5d0f6cb388a45d3bd2a0d4 (diff) | |
download | guile-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.texi | 10 |
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) *) |