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

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

[elpa] externals/denote 6395e69a76 06/12: Tweak spacing in some doc stri


From: ELPA Syncer
Subject: [elpa] externals/denote 6395e69a76 06/12: Tweak spacing in some doc strings
Date: Wed, 14 Sep 2022 05:57:39 -0400 (EDT)

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

    Tweak spacing in some doc strings
---
 denote.el | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/denote.el b/denote.el
index 87b813d718..b830c40467 100644
--- a/denote.el
+++ b/denote.el
@@ -738,23 +738,20 @@ This can be used in `denote-file-types' to format front 
mattter."
 
 (defun denote-format-keywords-for-md-front-matter (keywords)
   "Format front matter KEYWORDS for markdown file type.
-KEYWORDS is a list of strings.
-
-Consult the `denote-file-types' for how this is used."
+KEYWORDS is a list of strings.  Consult the `denote-file-types'
+for how this is used."
   (format "[%s]" (mapconcat (lambda (k) (format "%S" k)) keywords ", ")))
 
 (defun denote-format-keywords-for-text-front-matter (keywords)
   "Format front matter KEYWORDS for text file type.
-KEYWORDS is a list of strings.
-
-Consult the `denote-file-types' for how this is used."
+KEYWORDS is a list of strings.  Consult the `denote-file-types'
+for how this is used."
   (string-join keywords "  "))
 
 (defun denote-format-keywords-for-org-front-matter (keywords)
   "Format front matter KEYWORDS for org file type.
-KEYWORDS is a list of strings.
-
-Consult the `denote-file-types' for how this is used."
+KEYWORDS is a list of strings.  Consult the `denote-file-types'
+for how this is used."
   (if keywords
       (format ":%s:" (string-join keywords ":"))
     ""))



reply via email to

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