From ae358168ac7f919cf2c8114eec08cd5d07054aae Mon Sep 17 00:00:00 2001 From: semuserable Date: Sat, 9 Jul 2022 23:51:09 +0300 Subject: [PATCH] Fix typo (#3922) --- samples/core/Miscellaneous/CachingInterception/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/core/Miscellaneous/CachingInterception/Program.cs b/samples/core/Miscellaneous/CachingInterception/Program.cs index 390a80efa6..1bfe38da63 100644 --- a/samples/core/Miscellaneous/CachingInterception/Program.cs +++ b/samples/core/Miscellaneous/CachingInterception/Program.cs @@ -45,7 +45,7 @@ private static async Task Main() // 5. Pretend it's the next day. Thread.Sleep(10000); - // 6. Cache is expired, so the last message will noe be queried again. + // 6. Cache is expired, so the last message will not be queried again. using (var context = new DailyMessageContext()) { Console.WriteLine(await GetDailyMessage(context));