branch: externals/org-notify
commit ce41f093c183f0d976f3288720fb23bd27a037b5
Author: Peter Münster <p...@a16n.net>
Commit: Peter Münster <p...@a16n.net>

    Use plural form for new defcustom org-notify-timestamp-types
---
 org-notify.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/org-notify.el b/org-notify.el
index 38a39cac4d..14b59ac7dc 100644
--- a/org-notify.el
+++ b/org-notify.el
@@ -90,8 +90,8 @@
   "Maximum number of notifications per run of `org-notify-process'."
   :type 'integer)
 
-(defcustom org-notify-timestamp-type '(:deadline)
-  "Types of timestamps to be notified of"
+(defcustom org-notify-timestamp-types '(:deadline)
+  "Types of timestamps to be notified of."
   :type '(set (const :deadline)
               (const :scheduled)))
 
@@ -172,7 +172,7 @@ simple timestamp string."
            (mapcan (lambda (type)
                       (org-element-map node
                          'headline (apply-partially #'org-notify-make-todo 
type)))
-                    org-notify-timestamp-type)))))))
+                    org-notify-timestamp-types)))))))
 
 (defun org-notify-maybe-too-late (diff period heading)
   "Print warning message, when notified significantly later than defined by

Reply via email to