]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the length= shortdoc example
authorAlexandr Vityazev <avityazev@posteo.org>
Tue, 18 May 2021 13:36:25 +0000 (15:36 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 May 2021 13:36:25 +0000 (15:36 +0200)
* lisp/emacs-lisp/shortdoc.el (list): Fix the length= example
(bug#48495).

Copyright-paperwork-exempt: yes

lisp/emacs-lisp/shortdoc.el

index 9b31d687035a7e608a3e23876c5677873a77eedd..0320e1718259ffd4d0d49e3c04352e08b4ed44a1 100644 (file)
@@ -625,7 +625,7 @@ There can be any number of :example/:result elements."
   (length>
    :eval (length> '(a b c) 1))
   (length=
-   :eval (length> '(a b c) 3))
+   :eval (length= '(a b c) 3))
   (safe-length
    :eval (safe-length '(a b c))))