summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAlexandr Vityazev <avityazev@posteo.org>2021-05-18 15:36:25 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-05-18 15:36:25 +0200
commit2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64 (patch)
tree49ca99f9f49e1fc6a685448d465142bcfea9837f /lisp/emacs-lisp
parentcbd3a3b87d590b42c0e37f376c35200712bf5e1d (diff)
downloademacs-2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64.tar.gz
emacs-2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64.tar.bz2
emacs-2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64.zip
Fix the length= shortdoc example
* lisp/emacs-lisp/shortdoc.el (list): Fix the length= example (bug#48495). Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/shortdoc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 9b31d687035..0320e171825 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -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))))