Skip to content

Commit b97b2ef

Browse files
committed
clarify some text
1 parent c067fd5 commit b97b2ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aspnetcore/performance/caching/hybrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ Because much `HybridCache` usage will be adapted from existing `IDistributedCach
208208
* They're immutable types.
209209
* The code doesn't modify them.
210210

211-
In such cases, inform `HybridCache` that it's safe to reuse instances by:
211+
In such cases, inform `HybridCache` that it's safe to reuse instances by making at least one of the following changes:
212212

213213
* Marking the type as `sealed`. The `sealed` keyword in C# means that the class can't be inherited.
214214
* Applying the `[ImmutableObject(true)]` attribute to the type. The `[ImmutableObject(true)]` attribute indicates that the object's state can't be changed after it's created.

0 commit comments

Comments
 (0)