From e8c39310746887942cea0aae6d9f71648faaf515 Mon Sep 17 00:00:00 2001 From: Eddy Nakamura Date: Thu, 5 Dec 2019 13:55:58 -0300 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: Andrew Stanton-Nurse \n\nCommit migrated from https://github.com/dotnet/extensions/commit/c79268ee19fd3d81d312822d4abc8574a1629f9b --- src/ObjectPool/src/IPooledObjectPolicy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ObjectPool/src/IPooledObjectPolicy.cs b/src/ObjectPool/src/IPooledObjectPolicy.cs index 638fec2c81..458131e824 100644 --- a/src/ObjectPool/src/IPooledObjectPolicy.cs +++ b/src/ObjectPool/src/IPooledObjectPolicy.cs @@ -19,7 +19,7 @@ namespace Microsoft.Extensions.ObjectPool /// Runs some processing when an object was returned to the pool. Can be used to reset the state of an object and indicate if the object should be returned to the pool. /// /// The object to return to the pool. - /// true if the object should be returned to the pool. false if it's not possible/desirable for the pool to keep the object. + /// if the object should be returned to the pool. if it's not possible/desirable for the pool to keep the object. bool Return(T obj); } }