branch: externals/denote
commit c07185b0026c4626fc913f47220f41c5c85e0975
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Use correct symbol in two private doc strings
---
denote.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/denote.el b/denote.el
index 973f29bcf5..8395528efe 100644
--- a/denote.el
+++ b/denote.el
@@ -998,14 +998,14 @@ list for new note creation. The default is `org'.")
:keywords-value-reverse-function))
(defun denote--extensions ()
- "Return all extensions in `denote-file-type'."
+ "Return all extensions in `denote-file-types'."
(delete-dups
(mapcar (lambda (type)
(plist-get (cdr type) :extension))
denote-file-types)))
(defun denote--file-type-keys ()
- "Return all `denote-file-type' keys."
+ "Return all `denote-file-types' keys."
(delete-dups (mapcar #'car denote-file-types)))
(defun denote--get-title-line-from-front-matter (title file-type)