diff options
Diffstat (limited to 'doc/lispref/functions.texi')
| -rw-r--r-- | doc/lispref/functions.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index d5c89dd7cf3..e9003601516 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -843,7 +843,7 @@ length of @var{sequence}. For example: | |||
| 843 | @result{} (a c e) | 843 | @result{} (a c e) |
| 844 | (mapcar '1+ [1 2 3]) | 844 | (mapcar '1+ [1 2 3]) |
| 845 | @result{} (2 3 4) | 845 | @result{} (2 3 4) |
| 846 | (mapcar 'char-to-string "abc") | 846 | (mapcar 'string "abc") |
| 847 | @result{} ("a" "b" "c") | 847 | @result{} ("a" "b" "c") |
| 848 | @end group | 848 | @end group |
| 849 | 849 | ||