Skip to content

Commit

Permalink
[clojure/en] Balance parens (#5256)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrebotha authored Feb 13, 2025
1 parent c7b0011 commit b313285
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clojure.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,9 @@ keymap ; => {:a 1, :b 2, :c 3}
; operations in particular:
(->>
(range 10)
(map inc) ;=> (map inc (range 10)
(filter odd?) ;=> (filter odd? (map inc (range 10))
(into [])) ;=> (into [] (filter odd? (map inc (range 10)))
(map inc) ;=> (map inc (range 10))
(filter odd?) ;=> (filter odd? (map inc (range 10)))
(into [])) ;=> (into [] (filter odd? (map inc (range 10))))
; Result: [1 3 5 7 9]

; When you are in a situation where you want more freedom as where to
Expand Down

0 comments on commit b313285

Please sign in to comment.