emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/denote 94fb45c486 04/14: Placate the compiler regarding


From: ELPA Syncer
Subject: [elpa] externals/denote 94fb45c486 04/14: Placate the compiler regarding docstring format
Date: Wed, 10 Aug 2022 01:57:30 -0400 (EDT)

branch: externals/denote
commit 94fb45c4862095a489da3fbf9407b3f7c568350f
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Placate the compiler regarding docstring format
---
 denote.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/denote.el b/denote.el
index 8c9bab6d48..1ac6ccabdf 100644
--- a/denote.el
+++ b/denote.el
@@ -730,7 +730,7 @@ need to operate on the front matter as a whole.")
   "Front matter for new notes.
 
 TITLE, DATE, KEYWORDS, FILENAME, ID are all strings which are
-provided by `denote'. FILETYPE is one of the values of
+provided by `denote'.  FILETYPE is one of the values of
 `denote-file-type'."
   (let ((kw-md (denote--format-front-matter-keywords keywords 'md)))
     (pcase filetype
@@ -753,17 +753,17 @@ provided by `denote'. FILETYPE is one of the values of
 ;; Adapted from `org-hugo--org-date-time-to-rfc3339' in the `ox-hugo'
 ;; package: <https://github.com/kaushalmodi/ox-hugo>.
 (defun denote--date-rfc3339 (date)
-  "Format date using the RFC3339 specification."
+  "Format DATE using the RFC3339 specification."
   (replace-regexp-in-string
    "\\([0-9]\\{2\\}\\)\\([0-9]\\{2\\}\\)\\'" "\\1:\\2"
    (format-time-string "%FT%T%z" date)))
 
 (defun denote--date-org-timestamp (date)
-  "Format date using the Org inactive timestamp notation."
+  "Format DATE using the Org inactive timestamp notation."
   (format-time-string "[%F %a %R]" date))
 
 (defun denote--date-iso-8601 (date)
-  "Format date according to ISO 8601 standard."
+  "Format DATE according to ISO 8601 standard."
   (format-time-string "%F" date))
 
 (defun denote--date (date file-type)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]