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:
parent
8ad48a0bdd
commit
8b8708eadd
1 changed files with 1 additions and 1 deletions
|
@ -594,7 +594,7 @@ returned value is a list.
|
||||||
(seq-map-indexed (lambda (elt idx)
|
(seq-map-indexed (lambda (elt idx)
|
||||||
(list idx elt))
|
(list idx elt))
|
||||||
'(a b c))
|
'(a b c))
|
||||||
@result{} ((0 a) (b 1) (c 2))
|
@result{} ((0 a) (1 b) (2 c))
|
||||||
@end group
|
@end group
|
||||||
@end example
|
@end example
|
||||||
@end defun
|
@end defun
|
||||||
|
|
Loading…
Add table
Reference in a new issue