Skip to content

indentation #117

@trevor

Description

@trevor

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions