summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2014-01-21 16:21:36 -0500
committerMark H Weaver <mhw@netris.org>2014-01-21 16:21:36 -0500
commita5cbbaa66a2491453db0edff9b0cb592a98f61bf (patch)
tree67647b0fc118bfd8a8c80ea521b2ba990fd52f57
parente6c8e6047ed2e772cc4e1fb5ad4d389e5c616feb (diff)
downloadguile-a5cbbaa66a2491453db0edff9b0cb592a98f61bf.tar.gz
Fix nested block comment example in manual.
Reported by Chris K. Jester-Young <cky944@gmail.com>. * doc/ref/api-evaluation.texi (Block Comments): Fix example.
-rw-r--r--doc/ref/api-evaluation.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-evaluation.texi b/doc/ref/api-evaluation.texi
index 4a5b3d16a..7d67d9a21 100644
--- a/doc/ref/api-evaluation.texi
+++ b/doc/ref/api-evaluation.texi
@@ -238,7 +238,7 @@ comments as specified by R6RS and
@url{http://srfi.schemers.org/srfi-30/srfi-30.html, SRFI-30}:
@lisp
-(+ #| this is a #| nested |# block comment |# 2)
+(+ 1 #| this is a #| nested |# block comment |# 2)
@result{} 3
@end lisp