fix another typo in make_pooled

This commit is contained in:
Max Cahill 2021-08-13 10:56:53 +10:00 committed by GitHub
parent 7fe9234708
commit 0dfb74317f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ return function(class, limit)
return instance
end
--release a object to the pool
--release an object back to the pool
function class:release()
if #_pool < _pool_limit then
table.insert(_pool, self)