Skip to content

Commit

Permalink
flash cards fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyPatten committed Jun 22, 2023
1 parent ee12b93 commit aef63a5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Projects/Flash Cards/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
6 changes: 4 additions & 2 deletions Projects/Flash Cards/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

```
Expand All @@ -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

Expand Down
3 changes: 2 additions & 1 deletion Projects/Website/Games/Flash Cards/Flash Cards.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -55,6 +55,7 @@ public async Task Run()
{
await Console.Clear();
await Console.WriteLine("Flash Cards was closed.");
await Console.Refresh();
return;
}
}
Expand Down

0 comments on commit aef63a5

Please sign in to comment.