branch: elpa/spell-fu
commit a1f72e5857b7469b8ab3adce4ee40805591b098f
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>

    Fix swapped docstrings for dictionary test/remove functions
---
 spell-fu.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spell-fu.el b/spell-fu.el
index ab835061da2..ca0beb55c9f 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -280,7 +280,7 @@ Notes:
                                (hash-table-size (symbol-value dict))))))
 
 (defun spell-fu--dictionaries-test-any (test-fn)
-  "Remove any dictionaries that match TEST-FN."
+  "Return non-nil if any dictionaries match TEST-FN."
   (declare (important-return-value t))
   (let ((result nil))
     (let ((dict-list spell-fu-dictionaries))
@@ -292,7 +292,7 @@ Notes:
     result))
 
 (defun spell-fu--dictionaries-remove-any (test-fn)
-  "Return non-nil if any dictionaries match TEST-FN."
+  "Remove any dictionaries that match TEST-FN."
   (declare (important-return-value nil))
   (setq spell-fu-dictionaries
         (remq

Reply via email to