Skip to content

Commit bdf5757

Browse files
committed
Use clojure.string/join instead of apply str
1 parent d978de5 commit bdf5757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clj/src/vim_clojure_static/generate.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@
306306
(string/join \/ args))
307307

308308
(defn- qstr [& xs]
309-
(string/replace (apply str xs) "\\" "\\\\"))
309+
(string/replace (string/join xs) "\\" "\\\\"))
310310

311311
(defn- update-doc! [first-line-pattern src-file dst-file]
312312
(let [sbuf (with-open [rdr (io/reader src-file)]

0 commit comments

Comments
 (0)