Correct closing paren for meditations (#118)
The closing paren for meditations occurred after the second-to-last koan instead of the last one, so the test on the last one would never be executed.
This commit is contained in:
parent
570fb3b08b
commit
e0d037d529
@ -53,11 +53,11 @@
|
||||
|
||||
"You can get the values in a similar way"
|
||||
(= (list __ __ __)
|
||||
(sort (vals {2010 "Vancouver" 2014 "Sochi" 2018 "PyeongChang"}))))
|
||||
(sort (vals {2010 "Vancouver" 2014 "Sochi" 2018 "PyeongChang"})))
|
||||
|
||||
"You can even iterate over the map entries as a seq"
|
||||
(= {:a __ :b __}
|
||||
(into {}
|
||||
(map
|
||||
(fn [[k v]] [k (inc v)])
|
||||
{:a 1 :b 2})))
|
||||
{:a 1 :b 2}))))
|
||||
|
Loading…
Reference in New Issue
Block a user