Skip to content

Commit 3417049

Browse files
committed
apply vector => vec
1 parent 479bbf5 commit 3417049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java_time/graph.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
(condp = (count (:path path))
322322
0 (vector path (fn [x] x))
323323
1 (vector path (->> path :fns first))
324-
(let [fns (->> path :fns (apply vector))]
324+
(let [fns (->> path :fns vec)]
325325
(vector path (fn [v] (reduce (fn [v f] (f v)) v fns))))))
326326

327327
(defn conversion-fn

0 commit comments

Comments
 (0)