Skip to content

Commit e8c3931

Browse files
authored
Apply suggestions from code review
Co-Authored-By: Andrew Stanton-Nurse <[email protected]>\n\nCommit migrated from dotnet/extensions@c79268e
1 parent ee87152 commit e8c3931

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ObjectPool/src/IPooledObjectPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public interface IPooledObjectPolicy<T>
1919
/// 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.
2020
/// </summary>
2121
/// <param name="obj">The object to return to the pool.</param>
22-
/// <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>
22+
/// <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>
2323
bool Return(T obj);
2424
}
2525
}

0 commit comments

Comments
 (0)