From 0e23a514f096d8d6fe840a62b78195593aa85ef8 Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Wed, 16 Nov 2022 09:27:01 -0600 Subject: [PATCH] Fix misspelling in ex-info message --- src/clj/coffi/mem.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/coffi/mem.clj b/src/clj/coffi/mem.clj index 615b3bc..b9880fe 100644 --- a/src/clj/coffi/mem.clj +++ b/src/clj/coffi/mem.clj @@ -976,7 +976,7 @@ (if-some [prim-layout (primitive-type type)] (with-acquired [(segment-session segment) session] (serialize-into (serialize* obj type session) prim-layout segment session)) - (throw (ex-info "Attempted to serialize an object to a type that has not been overriden" + (throw (ex-info "Attempted to serialize an object to a type that has not been overridden" {:type type :object obj}))))