Update only and except single-arity parameter names.
The single-arity parameter names for the `only` and `except` functions did not match the same parameters in the dual-arity versions of the same functions. This makes both arities use the same name for the same parameter.
This commit is contained in:
parent
e9f9dfca14
commit
5b26fb6092
1 changed files with 4 additions and 4 deletions
|
|
@ -308,8 +308,8 @@
|
|||
set))
|
||||
|
||||
(defn only
|
||||
([states]
|
||||
(only (find-all-states) states))
|
||||
([these]
|
||||
(only (find-all-states) these))
|
||||
([states these]
|
||||
(intersection (mapset var-to-str these)
|
||||
(mapset var-to-str states))))
|
||||
|
|
@ -322,8 +322,8 @@
|
|||
states))
|
||||
|
||||
(defn except
|
||||
([states]
|
||||
(except (find-all-states) states))
|
||||
([these]
|
||||
(except (find-all-states) these))
|
||||
([states these]
|
||||
(remove (mapset var-to-str these)
|
||||
(mapset var-to-str states))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue