org-colview: Fix docstrings

* lisp/org-colview.el (org-columns--summary-min-age):
(org-columns--summary-max-age):
(org-columns--summary-mean-age): Fix argument name in docstrings.
This commit is contained in:
Nicolas Goaziou 2016-06-04 21:29:27 +02:00
parent daa11e13de
commit 2c70283641
1 changed files with 3 additions and 3 deletions

View File

@ -1272,19 +1272,19 @@ When PRINTF is non-nil, use it to format the result."
times))
(defun org-columns--summary-min-age (ages _)
"Compute the minimum time among TIMES."
"Compute the minimum time among AGES."
(format-seconds
"%dd %.2hh %mm %ss"
(apply #'min (mapcar #'org-columns--age-to-seconds ages))))
(defun org-columns--summary-max-age (ages _)
"Compute the maximum time among TIMES."
"Compute the maximum time among AGES."
(format-seconds
"%dd %.2hh %mm %ss"
(apply #'max (mapcar #'org-columns--age-to-seconds ages))))
(defun org-columns--summary-mean-age (ages _)
"Compute the minimum time among TIMES."
"Compute the minimum time among AGES."
(format-seconds
"%dd %.2hh %mm %ss"
(/ (apply #'+ (mapcar #'org-columns--age-to-seconds ages))