Fixed typo in comments

master
Robinson 2022-04-03 10:43:58 +02:00
parent 56f1b1d28b
commit 0666fe6e8b
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ internal class BoundedNonBlockingPool<T>(
/**
* Return object to the pool, waking the threads that have blocked during take()
* If current pool size is larger then max size, don't add object back into the pool
* If current pool size is larger than max size, don't add object back into the pool
*/
override fun put(`object`: T) {
if (currentSize.get() <= maxSize) {