Merge pull request #76 from mjansen401/master
fix spacing issue in 05_maps.clj
This commit is contained in:
commit
aec2d28748
@ -33,7 +33,7 @@
|
|||||||
(= __ (contains? {:a nil :b nil} :c))
|
(= __ (contains? {:a nil :b nil} :c))
|
||||||
|
|
||||||
"Maps are immutable, but you can create a new and improved version"
|
"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"
|
"You can also create a new version with an entry removed"
|
||||||
(= {__ __} (dissoc {1 "January" 2 "February"} 2))
|
(= {__ __} (dissoc {1 "January" 2 "February"} 2))
|
||||||
|
Loading…
Reference in New Issue
Block a user