Skip to content
New issue

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

Fix spelling in schema-registration error text #978

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/malli/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -2534,7 +2534,7 @@
(swap! -function-schemas* assoc-in [key ns name] (merge data {:schema (f ?schema), :ns ns, :name name}))
(catch #?(:clj Throwable :cljs :default) ex
(throw (ex-info
(str "Schema error when insrumenting function: " ns "/" name " - " (ex-message ex))
(str "Schema error when instrumenting function: " ns "/" name " - " (ex-message ex))
(ex-data ex)))))))

#?(:clj
Expand Down
2 changes: 1 addition & 1 deletion test/malli/dev_err_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
(alter-meta! #'plus-err #(assoc % :malli/schema [:=> [:cat [:vector]] [:int {:max 6}]]))
(try
(is (thrown-with-msg?
Exception #"Schema error when insrumenting function: malli.dev-err-test/plus-err - :malli.core/child-error"
Exception #"Schema error when instrumenting function: malli.dev-err-test/plus-err - :malli.core/child-error"
(md/start! {:ns *ns*})))
(catch Throwable _
(md/stop!)))
Expand Down