From dcdb1aeaa6708fa74b8c0fa441b1fe8280799141 Mon Sep 17 00:00:00 2001 From: Antonio Matos Date: Sat, 19 Sep 2020 16:37:19 -0300 Subject: [PATCH] Fix typo on exception message Typo (ess instead of Press) on the error message shown when failing to create a new queue (CreateQueueAsync) --- GettingStarted.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GettingStarted.cs b/GettingStarted.cs index ffd55c9..139f7cb 100644 --- a/GettingStarted.cs +++ b/GettingStarted.cs @@ -79,7 +79,7 @@ public async Task CreateQueueAsync(string queueName) } catch { - Console.WriteLine("If you are running with the default configuration please make sure you have started the storage emulator. ess the Windows key and type Azure Storage to select and run it from the list of applications - then restart the sample."); + Console.WriteLine("If you are running with the default configuration please make sure you have started the storage emulator. Press the Windows key and type Azure Storage to select and run it from the list of applications - then restart the sample."); Console.ReadLine(); throw; }