From aef63a560f93d5ae1e124a00d869ec58dfd9d6a5 Mon Sep 17 00:00:00 2001 From: ZacharyPatten Date: Thu, 22 Jun 2023 18:08:16 -0500 Subject: [PATCH] flash cards fixes --- Projects/Flash Cards/Program.cs | 2 +- Projects/Flash Cards/README.md | 6 ++++-- Projects/Website/Games/Flash Cards/Flash Cards.cs | 3 ++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Projects/Flash Cards/Program.cs b/Projects/Flash Cards/Program.cs index 88f14942..5cf22bbd 100644 --- a/Projects/Flash Cards/Program.cs +++ b/Projects/Flash Cards/Program.cs @@ -21,7 +21,7 @@ Console.WriteLine(" to help you memorize the NATO phonetic alphabet. The"); Console.WriteLine(" NATO phonetic alphabet is commonly used during radio"); Console.WriteLine(" communication in aviation. Each flash card will have"); - Console.WriteLine(" a letter from the english alphabet and you need to"); + Console.WriteLine(" a letter from the English alphabet and you need to"); Console.WriteLine(" provide the corresponding code word for that letter."); Console.WriteLine(); Console.WriteLine(" | NATO phonetic alphabet code words"); diff --git a/Projects/Flash Cards/README.md b/Projects/Flash Cards/README.md index f77338e2..db20f338 100644 --- a/Projects/Flash Cards/README.md +++ b/Projects/Flash Cards/README.md @@ -23,7 +23,7 @@ In this game you will be doing flash card exercises to help you memorize the NATO phonetic alphabet. The NATO phonetic alphabet is commonly used during radio communication in aviation. Each flash card -will have a letter from the english alphabet and you need to provide the corresponding code word for +will have a letter from the English alphabet and you need to provide the corresponding code word for that letter. ``` @@ -47,7 +47,9 @@ that letter. ## Input -- `enter`: confirm +- `a`, `b`, `c`... `z`, `-`: input code name +- `enter`: confirm/continue +- `escape`: exit game or return to main menu ## Downloads diff --git a/Projects/Website/Games/Flash Cards/Flash Cards.cs b/Projects/Website/Games/Flash Cards/Flash Cards.cs index 420b17da..6b10f13d 100644 --- a/Projects/Website/Games/Flash Cards/Flash Cards.cs +++ b/Projects/Website/Games/Flash Cards/Flash Cards.cs @@ -30,7 +30,7 @@ public async Task Run() await Console.WriteLine(" to help you memorize the NATO phonetic alphabet. The"); await Console.WriteLine(" NATO phonetic alphabet is commonly used during radio"); await Console.WriteLine(" communication in aviation. Each flash card will have"); - await Console.WriteLine(" a letter from the english alphabet and you need to"); + await Console.WriteLine(" a letter from the English alphabet and you need to"); await Console.WriteLine(" provide the corresponding code word for that letter."); await Console.WriteLine(); await Console.WriteLine(" | NATO phonetic alphabet code words"); @@ -55,6 +55,7 @@ public async Task Run() { await Console.Clear(); await Console.WriteLine("Flash Cards was closed."); + await Console.Refresh(); return; } }