]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a typo in ELisp manual
authorEli Zaretskii <eliz@gnu.org>
Fri, 1 Dec 2017 19:56:31 +0000 (21:56 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 1 Dec 2017 19:56:31 +0000 (21:56 +0200)
* doc/lispref/sequences.texi (Sequence Functions): Fix the example
of using 'seq-uniq'.  (Bug#29524)

doc/lispref/sequences.texi

index 5ae1567c1283a650d98f7ba7e1a581e060ef5fb6..4fba880803e93bfa5ae603949cc6e88aef9563d1 100644 (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