From 0b1087d198f5025fa29530c533da706cd578779d Mon Sep 17 00:00:00 2001 From: Joseph Donaldson Date: Tue, 22 Jul 2025 16:46:15 -0700 Subject: [PATCH] Fix typo in name of BGL_FAST_REALSP for jvm --- runtime/Jlib/foreign.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Jlib/foreign.java b/runtime/Jlib/foreign.java index b683d5411..dbac275a4 100644 --- a/runtime/Jlib/foreign.java +++ b/runtime/Jlib/foreign.java @@ -1891,7 +1891,7 @@ public static boolean BGL_FAST_REALP(Object o) return (o instanceof real); } - public static boolean BGL_FAST_REALP(Object o, Object p) + public static boolean BGL_FAST_REALSP(Object o, Object p) { return (o instanceof real) && (p instanceof real); }