diff options
author | Basil L. Contovounesios <contovob@tcd.ie> | 2020-12-27 13:14:30 +0000 |
---|---|---|
committer | Basil L. Contovounesios <contovob@tcd.ie> | 2020-12-27 13:14:30 +0000 |
commit | df882c9701755e2ae063f05d3381de14ae09951e (patch) | |
tree | a4001e80be19d2d6e53218b39624489ea5749829 /lisp/emacs-lisp/shortdoc.el | |
parent | 8bc727d0b4e46554ee4e92c1d1db7d3b3e672068 (diff) | |
download | emacs-df882c9701755e2ae063f05d3381de14ae09951e.tar.gz emacs-df882c9701755e2ae063f05d3381de14ae09951e.tar.bz2 emacs-df882c9701755e2ae063f05d3381de14ae09951e.zip |
; Fix recent shortdoc.el and fns.c additions
* lisp/emacs-lisp/shortdoc.el (list): Fix typos.
* src/fns.c (Flength_equal): Fix docstring.
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index c6259f89711..7fb1a88b861 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -619,11 +619,11 @@ There can be any number of :example/:result elements." (length :eval (length '(a b c))) (length< - :eval (lenth< '(a b c) 1)) + :eval (length< '(a b c) 1)) (length> - :eval (lenth> '(a b c) 1)) + :eval (length> '(a b c) 1)) (length= - :eval (lenth> '(a b c) 3)) + :eval (length> '(a b c) 3)) (safe-length :eval (safe-length '(a b c)))) |