We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--replace
::
Source before:
(ns test_kibit.core (:require [test_kibit.data :as tkb])) (def test-value {::tkb/foo 1 ::tkb/bar 2}) (def size (-> (doto (java.util.ArrayList.) (.add (::tkb/foo test-value)) (.add (::tkb/bar test-value))) .size))
After lein kibit --replace
lein kibit --replace
(ns test_kibit.core (:require [test_kibit.data :as tkb])) (def test-value {::tkb/foo 1 ::tkb/bar 2}) (def size (.size (doto (java.util.ArrayList.) (.add (:tkb/foo test-value)) (.add (:tkb/bar test-value)))))
Note that ::tkb/foo and ::tkb/bar got replace by :tkb/foo and :tkb/bar.
::tkb/foo
::tkb/bar
:tkb/foo
:tkb/bar
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Source before:
After
lein kibit --replace
Note that
::tkb/foo
and::tkb/bar
got replace by:tkb/foo
and:tkb/bar
.The text was updated successfully, but these errors were encountered: