You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AsyncMemoryCache/AsyncMemoryCache.cs
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ namespace AsyncMemoryCache;
13
13
14
14
/// <summary>
15
15
/// This interface exists mainly to avoid having concrete types as constructor arguments.
16
-
/// An effect of this is enabling subsitution and as a result, easier testing, where an actual concrete instance is not required in each and every test that uses a class that looks like the following
16
+
/// An effect of this is enabling substitution and as a result, easier testing, where an actual concrete instance is not required in each and every test that uses a class that looks like the following
17
17
/// <para/>
18
18
/// <code>
19
19
/// public MyService(AsyncMemoryCache<string, SomeCacheable>) { }
@@ -71,6 +71,11 @@ public sealed class AsyncMemoryCache<TKey, TValue> : IAsyncDisposable, IAsyncMem
0 commit comments