From 16e4f3836a4a3c6a83ce4737a56716c136c0c4ca Mon Sep 17 00:00:00 2001 From: Katie Savage Date: Fri, 6 May 2022 12:14:23 -0700 Subject: [PATCH] Fixed layout issue --- 2-csharp/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/2-csharp/README.md b/2-csharp/README.md index bcb06b1..f5ed90a 100644 --- a/2-csharp/README.md +++ b/2-csharp/README.md @@ -110,9 +110,9 @@ In C#, you can build applications that employ decision-making logic so that your If there are multiple condition, you can utilize the `else if` and `else` statements. Basically, if the `if` statement fails, these other statements allow you to test against other conditions. You can imagine this in the context of a rock⛰️-paper📃-scissors✂️ game. Imagine you chose rock⛰️. -`if` your opponent chooses scissors✂️, then you will win -`else if` your opponent also chooses rock⛰️, then you will tie -`else` your opponent chooses paper📃, then you will lose +* `if` your opponent chooses scissors✂️, then you will win +* `else if` your opponent also chooses rock⛰️, then you will tie +* `else` your opponent chooses paper📃, then you will lose Each possible decision your opponent could make leads to a different outcome. @@ -203,4 +203,4 @@ Want more practice with C#? The .NET team has you covered. Here's a few learning * Self Guided Tutorials on [Microsoft Learn](https://docs.microsoft.com/users/dotnet/collections/yz26f8y64n7k07) * [Learn to Code Page](https://dotnet.microsoft.com/learntocode) -Connect with us! Check out the [.NET Community Page](https://dotnet.microsoft.com/platform/community) to find links to our blogs, YouTube, Twitter, and more. \ No newline at end of file +Connect with us! Check out the [.NET Community Page](https://dotnet.microsoft.com/platform/community) to find links to our blogs, YouTube, Twitter, and more.