We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 834e85e commit 016bfb4Copy full SHA for 016bfb4
src/graphql_builder/util.cljc
@@ -5,7 +5,7 @@
5
6
(defn nl-join [coll]
7
(when (seq coll)
8
- (str/join "\n" (vec (remove nil? coll)))))
+ (str/join " " (vec (remove nil? coll)))))
9
10
(defn indent [level line]
11
(str (str/join "" (repeat (* 2 level) " ")) line))
0 commit comments