1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

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>
This commit is contained in:
Arun Isaac 2020-03-25 02:57:18 +05:30 committed by Ludovic Courtès
parent 3f279562ff
commit 782a5af969

View file

@ -772,11 +772,11 @@ The MD5 digest of a resource.
@end deftypevr @end deftypevr
@deftypevr {HTTP Header} List content-range @deftypevr {HTTP Header} List content-range
A range specification, as a list of three elements: the symbol Range specification as a list of three elements: the symbol
@code{bytes}, either the symbol @code{*} or a pair of integers, @code{bytes}, either the symbol @code{*} or a pair of integers
indicating the byte range, and either @code{*} or an integer, for the indicating the byte range, and either @code{*} or an integer indicating
instance length. Used to indicate that a response only includes part of the instance length. Used to indicate that a response only includes
a resource. part of a resource.
@example @example
(parse-header 'content-range "bytes 10-20/*") (parse-header 'content-range "bytes 10-20/*")
@result{} (bytes (10 . 20) *) @result{} (bytes (10 . 20) *)