From 2b23e08c282cf087acefb2242f492ebe17c5b23c Mon Sep 17 00:00:00 2001 From: "Chris Woodruff \"Woody" Date: Thu, 21 Mar 2024 08:06:46 -0400 Subject: [PATCH] Update chapter04.md --- Chapter04/chapter04.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chapter04/chapter04.md b/Chapter04/chapter04.md index 42ee9455..c5ae2dd6 100644 --- a/Chapter04/chapter04.md +++ b/Chapter04/chapter04.md @@ -147,7 +147,7 @@ In this exhilarating async universe, your program can now send off the Calculate ### The await keyword -Dive into the fantastic world of the await modifier in C# 10 and .NET 6, where your code dances through tasks with the grace of a ballet star, skipping over the boring waits and making efficiency look effortless. Imagine await as the magical word that pauses your favorite TV show (a task) while you run to grab a snack, ensuring you don't miss a single moment. It tells your program, "Hey, chill for a sec, I've got some stuff to handle, but don't worry, you won't even notice I'm gone!" +Dive into the fantastic world of the await modifier in C# and .NET, where your code dances through tasks with the grace of a ballet star, skipping over the boring waits and making efficiency look effortless. Imagine await as the magical word that pauses your favorite TV show (a task) while you run to grab a snack, ensuring you don't miss a single moment. It tells your program, "Hey, chill for a sec, I've got some stuff to handle, but don't worry, you won't even notice I'm gone!" Before the era of await, here's how our code drama unfolded: