Apply suggestions from code review

Co-Authored-By: Andrew Stanton-Nurse <andrew@stanton-nurse.com>\n\nCommit migrated from c79268ee19
This commit is contained in:
Eddy Nakamura 2019-12-05 13:55:58 -03:00 committed by GitHub
parent ee8715254d
commit e8c3931074
1 changed files with 1 additions and 1 deletions

View File

@ -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.
/// </summary>
/// <param name="obj">The object to return to the pool.</param>
/// <returns><c>true</c> if the object should be returned to the pool. <c>false</c> if it's not possible/desirable for the pool to keep the object.</returns>
/// <returns><see langword="true" /> if the object should be returned to the pool. <see langword="false" /> if it's not possible/desirable for the pool to keep the object.</returns>
bool Return(T obj);
}
}