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

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

[nongnu] elpa/spell-fu 9587fa4b99 17/86: Add missing args (quiet checkdo


From: ELPA Syncer
Subject: [nongnu] elpa/spell-fu 9587fa4b99 17/86: Add missing args (quiet checkdoc warnings)
Date: Thu, 7 Jul 2022 12:03:39 -0400 (EDT)

branch: elpa/spell-fu
commit 9587fa4b9993636812996ff412f2859c5946b058
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Add missing args (quiet checkdoc warnings)
---
 spell-fu.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/spell-fu.el b/spell-fu.el
index beca0af402..84e1c9c48f 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -129,11 +129,11 @@ Notes:
   (or (bound-and-true-p ispell-local-dictionary) (bound-and-true-p 
ispell-dictionary) "default"))
 
 (defun spell-fu--cache-file (dict)
-  "Return the location of the cache file."
+  "Return the location of the cache file with dictionary DICT."
   (expand-file-name (format "words_%s.el" dict) spell-fu-directory))
 
 (defun spell-fu--words-file (dict)
-  "Return the location of the word-list."
+  "Return the location of the word-list with dictionary DICT."
   (expand-file-name (format "words_%s.txt" dict) spell-fu-directory))
 
 
@@ -229,7 +229,7 @@ Argument POS return faces at this point."
 ;; Word List Generation
 
 (defun spell-fu--word-list-ensure (words-file dict)
-  "Ensure the word list is generated.
+  "Ensure the word list is generated with dictionary DICT.
 Argument WORDS-FILE the file to write the word list into."
   (let*
     (
@@ -327,7 +327,7 @@ save some time by not spending time reading it back."
 ;; Top level function, called when enabling the mode.
 
 (defun spell-fu--init-dictionary (dict)
-  "Setup the dictionary, initializing new files as necessary."
+  "Setup the dictionary, initializing new files as necessary with dictionary 
DICT."
 
   ;; Ensure our path exists.
   (unless (file-directory-p spell-fu-directory)



reply via email to

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