many doubled words in comments etc, plus some nearby typos

This commit is contained in:
hippietrail 2024-11-26 01:18:10 +07:00
parent c702d7c66d
commit 13598df8db
208 changed files with 252 additions and 254 deletions

View file

@ -142,7 +142,7 @@ public class AsyncLazyValue<T> {
}
/**
* Check the the value is available immediately
* Check if the value is available immediately
*
* @return true if {@link #request()} or {@link #provide()} has been called and completed.
*/

View file

@ -69,7 +69,7 @@ public abstract class AsyncPairingCache<K, V> {
protected abstract Map<K, CompletableFuture<V>> createPromiseCache(int max);
/**
* Enter a promise for the the given key into the cache
* Enter a promise for the given key into the cache
*
* <p>
* If the result for the given key is already available, the promise does not enter the cache.
@ -83,7 +83,7 @@ public abstract class AsyncPairingCache<K, V> {
}
/**
* Enter a promise for the the given key into the cache
* Enter a promise for the given key into the cache
*
* <p>
* If the result for the given key is already available, the promise does not enter the cache.