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?
|
[coll cp/map-or-seq?
|
||||||
match-value string?
|
match-value string?
|
||||||
replace-value cp/str-or-number?]
|
replace-value cp/str-or-number?]
|
||||||
(clojure.walk/postwalk #(if (and (= (type value-to-match) (type %))
|
(clojure.walk/postwalk #(if (and (= (type match-value) (type %))
|
||||||
(= value-to-match %))
|
(= match-value %))
|
||||||
value-to-replace
|
replace-value
|
||||||
%)
|
%)
|
||||||
coll))
|
coll))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue