summaryrefslogtreecommitdiff
path: root/module/web/request.scm
diff options
context:
space:
mode:
authorBake Timmons <b3timmons@speedymail.org>2012-01-11 23:55:18 -0500
committerAndy Wingo <wingo@pobox.com>2012-02-02 12:24:40 +0100
commit91a214ebd989fab6596ff24b7cad945f0dfc60a9 (patch)
tree9c597cb1f581bb52d17dd49b8b60c02f8cc493f5 /module/web/request.scm
parentb7e64f8b266651e5b3fae6f664a45468f0c4907f (diff)
downloadguile-91a214ebd989fab6596ff24b7cad945f0dfc60a9.tar.gz
Improve the usage of variable names in Scheme docstrings.
* module/ice-9/boot-9.scm: * module/ice-9/popen.scm: * module/ice-9/pretty-print.scm: * module/ice-9/r4rs.scm: * module/rnrs/io/ports.scm: * module/texinfo/string-utils.scm: * module/web/http.scm: * module/web/request.scm: * module/web/response.scm: * test-suite/vm/run-vm-tests.scm: Make the variable names in Scheme docstrings more consistent. Replace a few instances of @var with @code when appropriate.
Diffstat (limited to 'module/web/request.scm')
-rw-r--r--module/web/request.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/request.scm b/module/web/request.scm
index c9204a4bf..8259887c0 100644
--- a/module/web/request.scm
+++ b/module/web/request.scm
@@ -217,7 +217,7 @@ on @var{port}, perhaps using some transfer encoding."
(bytevector-length bv) nbytes))))))
(define (write-request-body r bv)
- "Write @var{body}, a bytevector, to the port corresponding to the HTTP
+ "Write @var{bv}, a bytevector, to the port corresponding to the HTTP
request @var{r}."
(put-bytevector (request-port r) bv))