Fix typo in ObjectPool.md (#30754)
parent
90312e0fda
commit
7bd57ab3fd
|
@ -49,7 +49,7 @@ NOTE: After the pool is disposed:
|
|||
Important `ObjectPool` types and interfaces:
|
||||
|
||||
* <xref:Microsoft.Extensions.ObjectPool.ObjectPool`1> : The basic object pool abstraction. Used to get and return objects.
|
||||
* <xref:Microsoft.Extensions.ObjectPool.PooledObjectPolicy%601> : Implement this to customize how an object is created and how it is reset when returned to the pool. This can be passed into an object pool that is construct directly, or
|
||||
* <xref:Microsoft.Extensions.ObjectPool.PooledObjectPolicy%601> : Implement this to customize how an object is created and how it's reset when returned to the pool. This can be passed into an object pool that's constructed directly.
|
||||
* <xref:Microsoft.Extensions.ObjectPool.IResettable> : Automatically resets the object when returned to an object pool.
|
||||
|
||||
The ObjectPool can be used in an app in multiple ways:
|
||||
|
|
Loading…
Reference in New Issue