diff --git a/aspnetcore/performance/caching/memory.md b/aspnetcore/performance/caching/memory.md index fcd9f42cdd..f22ddb2050 100644 --- a/aspnetcore/performance/caching/memory.md +++ b/aspnetcore/performance/caching/memory.md @@ -101,7 +101,7 @@ The following sample: ## Use SetSize, Size, and SizeLimit to limit cache size -A `MemoryCache` instance may optionally specify and enforce a size limit. The memory size limit does not have a defined unit of measure because the cache has no mechanism to measure the size of entries. If the cache memory size limit is set, all entries must specify size. The ASP.NET Core runtime does not limit cache size based on memory pressure. It's up to the developer to limit cache size. The size specified is in units the developer chooses. +A `MemoryCache` instance may optionally specify and enforce a size limit. The cache size limit does not have a defined unit of measure because the cache has no mechanism to measure the size of entries. If the cache size limit is set, all entries must specify size. The ASP.NET Core runtime does not limit cache size based on memory pressure. It's up to the developer to limit cache size. The size specified is in units the developer chooses. For example: @@ -117,7 +117,7 @@ The following code creates a unitless fixed size