diff options
-rw-r--r-- | src/clj/clojure/set.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clj/clojure/set.clj b/src/clj/clojure/set.clj index 835e6063..af0f65f6 100644 --- a/src/clj/clojure/set.clj +++ b/src/clj/clojure/set.clj @@ -82,7 +82,7 @@ (fn [m [old new]] (if (and (not= old new) (contains? m old)) - (-> m (assoc new (m old)) (dissoc old)) + (-> m (assoc new (get m old)) (dissoc old)) m)) map kmap)) |