From: Eli Zaretskii Date: Fri, 1 Dec 2017 19:56:31 +0000 (+0200) Subject: Fix a typo in ELisp manual X-Git-Tag: emacs-26.0.91~210 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f52d795;p=emacs.git Fix a typo in ELisp manual * doc/lispref/sequences.texi (Sequence Functions): Fix the example of using 'seq-uniq'. (Bug#29524) --- diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 5ae1567c128..4fba880803e 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi @@ -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