Skip to content

Commit

Permalink
space
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhinavOmprakash committed Sep 2, 2024
1 parent 8223567 commit d408251
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/snitch/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -478,12 +478,12 @@
(defn replace-fn-with-*fn
"Replaces all occurences of `fn` with `*fn`"
[forms]
(let [result (prewalk (fn [form]
(if (fn-form? form)
`(*fn ~@(rest form))
(let [result (prewalk (fn [form]
(if (fn-form? form)
`(*fn ~@(rest form))

form))
forms)]
form))
forms)]
result))


Expand Down

0 comments on commit d408251

Please sign in to comment.