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 /test-suite/vm/run-vm-tests.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 'test-suite/vm/run-vm-tests.scm')
-rw-r--r-- | test-suite/vm/run-vm-tests.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/vm/run-vm-tests.scm b/test-suite/vm/run-vm-tests.scm index f23dff682..9304e8179 100644 --- a/test-suite/vm/run-vm-tests.scm +++ b/test-suite/vm/run-vm-tests.scm @@ -67,7 +67,7 @@ it succeeded." (define (run-vm-tests files) "For each file listed in @var{files}, load it and run it through both the interpreter and the VM (after having it compiled). Both results must be -equal in the sense of @var{equal?}." +equal in the sense of @code{equal?}." (let* ((res (map (lambda (file) (format #t "running `~a'... " file) (if (catch #t |