1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-03 20:24:29 +00:00

Fix example in Sequence Functions node in the manual

* doc/lispref/sequences.texi (Sequence Functions): Fix the result
from the example.
This commit is contained in:
Petteri Hintsanen 2021-02-07 13:10:19 +01:00 committed by Lars Ingebrigtsen
parent 8ad48a0bdd
commit 8b8708eadd

View 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