Skip to content

Commit 9a7151d

Browse files
authored
[clojure/es] Balance parens (#5253)
1 parent 5364bb3 commit 9a7151d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

es/clojure.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,9 @@ keymap ; => {:a 1, :b 2, :c 3}
294294
; operaciones de colecciones en particular:
295295
(->>
296296
(range 10)
297-
(map inc) ;=> (map inc (range 10)
298-
(filter odd?) ;=> (filter odd? (map inc (range 10))
299-
(into [])) ;=> (into [] (filter odd? (map inc (range 10)))
297+
(map inc) ;=> (map inc (range 10))
298+
(filter odd?) ;=> (filter odd? (map inc (range 10)))
299+
(into [])) ;=> (into [] (filter odd? (map inc (range 10))))
300300
; Result: [1 3 5 7 9]
301301

302302
; Cuando estés en una situación donde quieras tener más libertad en donde

0 commit comments

Comments
 (0)