about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/set.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-09-01T15·27+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-09-01T15·27+0100
commitbaf08416cf8ca0be469fa49f36452c382060a806 (patch)
tree802ae7db7aa58b84c57e88fbd2cade19108139f0 /emacs/.emacs.d/wpc/set.el
parent75a9a156a0fab425ccc6821d38d7d20d0c2aba31 (diff)
Apply checkdoc fixes to set.el
While I don't agree with what checkdoc is advising here, I'd rather not fight
it.
Diffstat (limited to '')
-rw-r--r--emacs/.emacs.d/wpc/set.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/.emacs.d/wpc/set.el b/emacs/.emacs.d/wpc/set.el
index 2eb89645152f..51c0c434f54e 100644
--- a/emacs/.emacs.d/wpc/set.el
+++ b/emacs/.emacs.d/wpc/set.el
@@ -65,7 +65,7 @@
        (list-reduce acc f)))
 
 (defun set-intersection (a b)
-  "Return the set intersection between sets A and B."
+  "Return the set intersection between A and B."
   (set-reduce (set-new)
               (lambda (x acc)
                 (if (set-contains? x b)
@@ -98,11 +98,11 @@
              (set-xs b)))
 
 (defun set-distinct? (a b)
-  "Return t if sets A and B have no shared members."
+  "Return t if A and B have no shared members."
   (set-empty? (set-intersection a b)))
 
 (defun set-superset? (a b)
-  "Return t if set A contains all of the members of set B."
+  "Return t if A has all of the members of B."
   (->> b
        set-to-list
        (list-all? (lambda (x) (set-contains? x a)))))