From 913c004adb59458caca9aa619eb8cb2e90c5437a Mon Sep 17 00:00:00 2001 From: Kristin Rutenkolk Date: Tue, 22 Oct 2024 13:19:07 +0200 Subject: [PATCH] fix forEach reference --- 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 7197569..9d92b0e 100644 --- a/src/clj/coffi/mem.clj +++ b/src/clj/coffi/mem.clj @@ -1798,7 +1798,7 @@ (equiv [this o] (.map_equiv org o)) (empty [this] (.map_empty org)) (iterator [this] (.map_iterator org)) - (forEach [this c] (.map_foreach org c)) + (forEach [this c] (.map_forEach org c)) (seq [this] (.map_seq org)) (count [this] (.struct_count org)) (assoc [this k v] (.struct_assoc org k v))