Fix variable names
This commit is contained in:
parent
0b647ed4d8
commit
dd897c7364
1 changed files with 3 additions and 3 deletions
|
@ -31,9 +31,9 @@
|
|||
[coll cp/map-or-seq?
|
||||
match-value string?
|
||||
replace-value cp/str-or-number?]
|
||||
(clojure.walk/postwalk #(if (and (= (type value-to-match) (type %))
|
||||
(= value-to-match %))
|
||||
value-to-replace
|
||||
(clojure.walk/postwalk #(if (and (= (type match-value) (type %))
|
||||
(= match-value %))
|
||||
replace-value
|
||||
%)
|
||||
coll))
|
||||
|
||||
|
|
Loading…
Reference in a new issue