diff options
| author | Alexandr Vityazev | 2021-05-18 15:36:25 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-05-18 15:36:25 +0200 |
| commit | 2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64 (patch) | |
| tree | 49ca99f9f49e1fc6a685448d465142bcfea9837f /lisp | |
| parent | cbd3a3b87d590b42c0e37f376c35200712bf5e1d (diff) | |
| download | emacs-2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64.tar.gz 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')
| -rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 2 |
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." | |||
| 625 | (length> | 625 | (length> |
| 626 | :eval (length> '(a b c) 1)) | 626 | :eval (length> '(a b c) 1)) |
| 627 | (length= | 627 | (length= |
| 628 | :eval (length> '(a b c) 3)) | 628 | :eval (length= '(a b c) 3)) |
| 629 | (safe-length | 629 | (safe-length |
| 630 | :eval (safe-length '(a b c)))) | 630 | :eval (safe-length '(a b c)))) |
| 631 | 631 | ||