Skip to content

Commit aec2d28

Browse files
author
Colin Jones
committed
Merge pull request #76 from mjansen401/master
fix spacing issue in 05_maps.clj
2 parents c7bd270 + eaf6cd6 commit aec2d28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/koans/05_maps.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
(= __ (contains? {:a nil :b nil} :c))
3434

3535
"Maps are immutable, but you can create a new and improved version"
36-
(= {1 "January" 2 __} (assoc {1 "January" } 2 "February"))
36+
(= {1 "January" 2 __} (assoc {1 "January"} 2 "February"))
3737

3838
"You can also create a new version with an entry removed"
3939
(= {__ __} (dissoc {1 "January" 2 "February"} 2))

0 commit comments

Comments
 (0)