]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix example in Sequence Functions node in the manual
authorPetteri Hintsanen <petterih@iki.fi>
Sun, 7 Feb 2021 12:10:19 +0000 (13:10 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 7 Feb 2021 12:10:19 +0000 (13:10 +0100)
* doc/lispref/sequences.texi (Sequence Functions): Fix the result
from the example.

doc/lispref/sequences.texi

index bdf0b95d810f62ef7120d272c2fe91892377cd00..b48d4569180709d173a18de168ad756377331e14 100644 (file)
@@ -594,7 +594,7 @@ returned value is a list.
 (seq-map-indexed (lambda (elt idx)
                    (list idx elt))
                  '(a b c))
-@result{} ((0 a) (b 1) (c 2))
+@result{} ((0 a) (1 b) (2 c))
 @end group
 @end example
 @end defun