From 907db6d55019f58e1af4c10eed07127028619cff Mon Sep 17 00:00:00 2001 From: Robinson Date: Tue, 1 Aug 2023 20:42:12 -0600 Subject: [PATCH] fixed comment --- src/dorkbox/collections/IntIntMap.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dorkbox/collections/IntIntMap.kt b/src/dorkbox/collections/IntIntMap.kt index 3c2dc17..2296dd7 100644 --- a/src/dorkbox/collections/IntIntMap.kt +++ b/src/dorkbox/collections/IntIntMap.kt @@ -37,7 +37,7 @@ import dorkbox.collections.ObjectSet.Companion.tableSize import java.util.* /** - * An unordered map where the keys are unboxed ints and values are objects. No allocation is done except when growing the table + * An unordered map where the keys are unboxed ints and values are floats. No allocation is done except when growing the table * size. * * This class performs fast contains and remove (typically O(1), worst case O(n) but that is rare in practice). Add may be