commit 3d085714141f5cf40e25c68a4ca9ef2a0e7e0063 parent f640a247e5c147e264d672a802f25a70f2c0c45e Author: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz> Date: Sun, 4 Feb 2024 15:57:50 -0500 Strings: Add missing markup to examples. Diffstat:
M | doc/r7rs-small/procedures/strings.texinfo | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/r7rs-small/procedures/strings.texinfo b/doc/r7rs-small/procedures/strings.texinfo @@ -143,11 +143,11 @@ in constant time. @lisp (define (f) (make-string 3 #\*)) (define (g) "***") -(string-set! (f) 0 #\?) @result{} unspecified -(string-set! (g) 0 #\?) @result{} error +(string-set! (f) 0 #\?) @result{} @r{unspecified} +(string-set! (g) 0 #\?) @result{} @r{error} (string-set! (symbol->string 'immutable) 0 - #\?) @result{} error + #\?) @result{} @r{error} @end lisp @end deffn