From 2e6c0e02e3830758d691a463749a4f3cff8b1e29 Mon Sep 17 00:00:00 2001 From: Robinson Date: Wed, 2 Mar 2022 20:45:37 +0100 Subject: [PATCH] Fixed comments --- src/dorkbox/util/collections/LockFreeIntStringMap.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dorkbox/util/collections/LockFreeIntStringMap.java b/src/dorkbox/util/collections/LockFreeIntStringMap.java index 9f1d222..9dee7d2 100644 --- a/src/dorkbox/util/collections/LockFreeIntStringMap.java +++ b/src/dorkbox/util/collections/LockFreeIntStringMap.java @@ -150,7 +150,7 @@ class LockFreeIntStringMap { * DO NOT MODIFY THE MAP VIA THIS (unless you synchronize around it!) It will result in unknown object visibility! * * Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each - * time this method is called. Use the {@link IntMap.Entries} constructor for nested or multithreaded iteration. + * time this method is called. Use the {@link IntMap.Entries} constructor for nested or multi-threaded iteration. */ public IntMap.Keys keys() { @@ -162,7 +162,7 @@ class LockFreeIntStringMap { * DO NOT MODIFY THE MAP VIA THIS (unless you synchronize around it!) It will result in unknown object visibility! * * Returns an iterator for the values in the map. Remove is supported. Note that the same iterator instance is returned each - * time this method is called. Use the {@link IntMap.Entries} constructor for nested or multithreaded iteration. + * time this method is called. Use the {@link IntMap.Entries} constructor for nested or multi-threaded iteration. */ public IntMap.Values values() { @@ -174,7 +174,7 @@ class LockFreeIntStringMap { * DO NOT MODIFY THE MAP VIA THIS (unless you synchronize around it!) It will result in unknown object visibility! * * Returns an iterator for the entries in the map. Remove is supported. Note that the same iterator instance is returned each - * time this method is called. Use the {@link IntMap.Entries} constructor for nested or multithreaded iteration. + * time this method is called. Use the {@link IntMap.Entries} constructor for nested or multi-threaded iteration. */ public IntMap.Entries entries() {