diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-14 07:55:56 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-14 07:57:14 +0200 |
commit | 25ebb9374bdadf66153727831fc7ff131c8cf299 (patch) | |
tree | 7ed04a5efe70f4f6e66118aebd9ccee12275d6bf /lisp/emacs-lisp/elp.el | |
parent | cf2fa6c87f4da4665ff8a9e8e220bba0b5bccefc (diff) | |
download | emacs-25ebb9374bdadf66153727831fc7ff131c8cf299.tar.gz emacs-25ebb9374bdadf66153727831fc7ff131c8cf299.tar.bz2 emacs-25ebb9374bdadf66153727831fc7ff131c8cf299.zip |
; More minor docfixes found by checkdoc
Diffstat (limited to 'lisp/emacs-lisp/elp.el')
-rw-r--r-- | lisp/emacs-lisp/elp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el index c2b026dc822..8c33b7c9948 100644 --- a/lisp/emacs-lisp/elp.el +++ b/lisp/emacs-lisp/elp.el @@ -407,11 +407,11 @@ original definition, use \\[elp-restore-function] or \\[elp-restore-all]." (>= (aref vec1 0) (aref vec2 0))) (defun elp-sort-by-total-time (vec1 vec2) - "Predicate to sort by highest total time spent in function. See `sort'." + "Predicate to sort by highest total time spent in function. See `sort'." (>= (aref vec1 1) (aref vec2 1))) (defun elp-sort-by-average-time (vec1 vec2) - "Predicate to sort by highest average time spent in function. See `sort'." + "Predicate to sort by highest average time spent in function. See `sort'." (>= (aref vec1 2) (aref vec2 2))) (defsubst elp-pack-number (number width) |