From 83a75521b6d51b01b0284e0e01004ccbabb3dac4 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 5 Oct 2022 12:47:47 -0400 Subject: [PATCH 1/3] Update hello-world.yml Added 'string' in line 64 for the code to copy into the editor --- docs/csharp/tour-of-csharp/tutorials/hello-world.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/tour-of-csharp/tutorials/hello-world.yml b/docs/csharp/tour-of-csharp/tutorials/hello-world.yml index ddf579a8f2481..e22bbe2017bec 100644 --- a/docs/csharp/tour-of-csharp/tutorials/hello-world.yml +++ b/docs/csharp/tour-of-csharp/tutorials/hello-world.yml @@ -62,7 +62,7 @@ items: of the `aFriend` variable and its initial assignment. ```csharp - aFriend = "Maira"; + string aFriend = "Maira"; Console.WriteLine(aFriend); ``` From 89da53fd5038bd9f9055f93bf54878d26624995e Mon Sep 17 00:00:00 2001 From: John Date: Wed, 12 Oct 2022 14:35:30 -0400 Subject: [PATCH 2/3] Update docs/csharp/tour-of-csharp/tutorials/hello-world.yml Co-authored-by: Bill Wagner --- docs/csharp/tour-of-csharp/tutorials/hello-world.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/csharp/tour-of-csharp/tutorials/hello-world.yml b/docs/csharp/tour-of-csharp/tutorials/hello-world.yml index e22bbe2017bec..8307b577e176b 100644 --- a/docs/csharp/tour-of-csharp/tutorials/hello-world.yml +++ b/docs/csharp/tour-of-csharp/tutorials/hello-world.yml @@ -60,6 +60,9 @@ items: the name to one of your friends. Add these two lines in the interactive window following the code you've already added. Make sure you keep the declaration of the `aFriend` variable and its initial assignment. + + > [!IMPORTANT] + > Don't delete the declaration of `aFriend`. Add the code below following the existing declaration. ```csharp string aFriend = "Maira"; From f6b17c1896be7520073a4da41b78472ded427335 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 12 Oct 2022 14:35:46 -0400 Subject: [PATCH 3/3] Update docs/csharp/tour-of-csharp/tutorials/hello-world.yml Co-authored-by: Bill Wagner --- docs/csharp/tour-of-csharp/tutorials/hello-world.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/tour-of-csharp/tutorials/hello-world.yml b/docs/csharp/tour-of-csharp/tutorials/hello-world.yml index 8307b577e176b..9c31d04044d48 100644 --- a/docs/csharp/tour-of-csharp/tutorials/hello-world.yml +++ b/docs/csharp/tour-of-csharp/tutorials/hello-world.yml @@ -65,7 +65,7 @@ items: > Don't delete the declaration of `aFriend`. Add the code below following the existing declaration. ```csharp - string aFriend = "Maira"; + aFriend = "Maira"; Console.WriteLine(aFriend); ```