From 7bd57ab3fd0fe4cca11ae145b1113ed6e7371be8 Mon Sep 17 00:00:00 2001 From: Eric Mutta Date: Wed, 18 Oct 2023 21:09:02 +0300 Subject: [PATCH] Fix typo in ObjectPool.md (#30754) --- aspnetcore/performance/ObjectPool.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/performance/ObjectPool.md b/aspnetcore/performance/ObjectPool.md index 0a3ef61408..9b74551d6b 100644 --- a/aspnetcore/performance/ObjectPool.md +++ b/aspnetcore/performance/ObjectPool.md @@ -49,7 +49,7 @@ NOTE: After the pool is disposed: Important `ObjectPool` types and interfaces: * : The basic object pool abstraction. Used to get and return objects. -* : 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 +* : 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. * : Automatically resets the object when returned to an object pool. The ObjectPool can be used in an app in multiple ways: