Browse Source

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.
Nicolas Goaziou 8 years ago
parent
commit
2c70283641
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lisp/org-colview.el

+ 3 - 3
lisp/org-colview.el

@@ -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))