Fix a typo in ELisp manual

* doc/lispref/sequences.texi (Sequence Functions): Fix the example
of using 'seq-uniq'.  (Bug#29524)
This commit is contained in:
Eli Zaretskii 2017-12-01 21:56:31 +02:00
parent bf26fc3656
commit f52d79500b

View file

@ -853,7 +853,7 @@ it is a function of two arguments to use instead of the default @code{equal}.
@end group
@group
(seq-uniq '(1 2 2.0 1.0) #'=)
@result{} [3 4]
@result{} [1 2]
@end group
@end example
@end defun