Document byte-to-string in Lisp manual.
[bpt/emacs.git] / doc / lispref / functions.texi
index 6f3fd63..6352454 100644 (file)
@@ -818,7 +818,7 @@ length of @var{sequence}.  For example:
      @result{} (a c e)
 (mapcar '1+ [1 2 3])
      @result{} (2 3 4)
-(mapcar 'char-to-string "abc")
+(mapcar 'string "abc")
      @result{} ("a" "b" "c")
 @end group