X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/b9345dfd4b5479ec624f1870723a8ea5c9c719e7..ed7f1a6c5caaf4159125c08db5d18c5471fdd032:/doc/lispref/strings.texi diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index d062c21595..05ac40e90c 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi @@ -828,12 +828,12 @@ is not truncated. @example @group -(format "The word `%7s' actually has %d letters in it." +(format "The word `%7s' has %d letters in it." "foo" (length "foo")) - @result{} "The word ` foo' actually has 3 letters in it." -(format "The word `%7s' actually has %d letters in it." + @result{} "The word ` foo' has 3 letters in it." +(format "The word `%7s' has %d letters in it." "specification" (length "specification")) - @result{} "The word `specification' actually has 13 letters in it." + @result{} "The word `specification' has 13 letters in it." @end group @end example