diff options
author | Bake Timmons <b3timmons@speedymail.org> | 2012-01-11 23:55:18 -0500 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2012-02-02 12:24:40 +0100 |
commit | 91a214ebd989fab6596ff24b7cad945f0dfc60a9 (patch) | |
tree | 9c597cb1f581bb52d17dd49b8b60c02f8cc493f5 /module/web/http.scm | |
parent | b7e64f8b266651e5b3fae6f664a45468f0c4907f (diff) | |
download | guile-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/http.scm')
-rw-r--r-- | module/web/http.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/http.scm b/module/web/http.scm index b060af91e..c15bc3ed7 100644 --- a/module/web/http.scm +++ b/module/web/http.scm @@ -205,7 +205,7 @@ header with name @var{sym}." (define (write-header sym val port) "Writes the given header name and value to @var{port}. If @var{sym} is a known header, uses the specific writer registered for that header. -Otherwise the value is written using @var{display}." +Otherwise the value is written using @code{display}." (display (header->string sym) port) (display ": " port) ((header-writer sym) val port) |