fix spacing issue in 05_maps.clj

This commit is contained in:
Mike Jansen 2014-04-25 14:11:18 -05:00
parent c7bd27047a
commit eaf6cd6f80

View File

@ -33,7 +33,7 @@
(= __ (contains? {:a nil :b nil} :c))
"Maps are immutable, but you can create a new and improved version"
(= {1 "January" 2 __} (assoc {1 "January" } 2 "February"))
(= {1 "January" 2 __} (assoc {1 "January"} 2 "February"))
"You can also create a new version with an entry removed"
(= {__ __} (dissoc {1 "January" 2 "February"} 2))