From b313285d8bc7ffc882fa38ad74f26a3cae4a01a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henr=C3=A9=20Botha?= Date: Thu, 13 Feb 2025 16:01:31 +0100 Subject: [PATCH] [clojure/en] Balance parens (#5256) --- clojure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clojure.md b/clojure.md index 0b4ac00b..83216f2a 100644 --- a/clojure.md +++ b/clojure.md @@ -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