You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In focus-in, it looks like you use ::not-found when you mean not-found. (If you mean to use the keyword, then having the not-found parameter would be ... confusing.) This doesn't appear to break any of the examples because you only pass ::not-found in within the library, but it seems worth fixing.
(defn ^:no-doc focus-in [path not-found x]
(let [v (get-in x path not-found)]
(if (= v ::not-found)
(list)
(list v))))
Thanks!
The text was updated successfully, but these errors were encountered:
In
focus-in
, it looks like you use::not-found
when you meannot-found
. (If you mean to use the keyword, then having thenot-found
parameter would be ... confusing.) This doesn't appear to break any of the examples because you only pass::not-found
in within the library, but it seems worth fixing.Thanks!
The text was updated successfully, but these errors were encountered: