-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Description
clooj currently indents the following last line as:
(defn str
(^String [x & ys]
((fn [^StringBuilder sb more]
(if more
(recur (. sb (append (str (first more)))) (next more))
(str sb)))
(new StringBuilder (str x)) ys)))
but I believe it should be:
(defn str
(^String [x & ys]
((fn [^StringBuilder sb more]
(if more
(recur (. sb (append (str (first more)))) (next more))
(str sb)))
(new StringBuilder (str x)) ys)))
Metadata
Metadata
Assignees
Labels
No labels