commit c111c7aaeb97c1e340595f772abef7acbba569c0
parent 5612e682bae95acb9cd8b23778017fa11bcbc25b
Author: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz>
Date: Tue, 30 Jan 2024 19:18:44 -0500
Literal expressions: Texify.
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/doc/r7rs-small/r7rs-small.texinfo b/doc/r7rs-small/r7rs-small.texinfo
@@ -1226,8 +1226,8 @@ syntax: (quote <datum>)
syntax: '<datum>
syntax: <constant>
-(quote <datum>) evaluates to <datum>.<Datum> can be any external representation of a
-Scheme object (see section 3.3). This notation is used to include literal constants in
+@code{(quote} <datum>@code{)} evaluates to <datum>. <Datum> can be any external representation of a
+Scheme object (@xref{External representations (basic)}). This notation is used to include literal constants in
Scheme code.
@example
@@ -1238,7 +1238,7 @@ Scheme code.
@end example
-@code{(quote <datum>)} can be abbreviated as @code{'<datum>}. The two
+@code{(quote} <datum>@code{)} can be abbreviated as @code{'}<datum>. The two
notations are equivalent in all respects.
@example
@@ -1273,8 +1273,8 @@ they need not be quoted.
@end example
-As noted in section 3.4, it is an error to attempt to alter a constant (i.e. the value
-of a literal expression) using a mutation procedure like set-car! or string-set!.
+As noted in @ref{Storage model}, it is an error to attempt to alter a constant (i.e.@: the value
+of a literal expression) using a mutation procedure like @code{set-car!} or @code{string-set!}.
@node Procedure calls
@subsection Procedure calls