Skip to content

Commit 08e84a2

Browse files
authored
Fix inheritdoc tag (#55293)
1 parent dc8119c commit 08e84a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ObjectPool/src/ObjectPool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public abstract class ObjectPool<T> where T : class
2727
/// </summary>
2828
public static class ObjectPool
2929
{
30-
/// <inheritdoc />
30+
/// <inheritdoc cref="ObjectPoolProvider.Create{T}(IPooledObjectPolicy{T})" />
3131
public static ObjectPool<T> Create<T>(IPooledObjectPolicy<T>? policy = null) where T : class, new()
3232
{
3333
var provider = new DefaultObjectPoolProvider();

0 commit comments

Comments
 (0)