Fix coconut spelling

This commit is contained in:
Phillip Haydon 2023-04-24 14:37:06 +08:00 committed by GitHub
parent d64d3ec770
commit 5843a4545e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,13 +29,13 @@ var fruits = AnsiConsole.Prompt(
"[grey](Press [blue]<space>[/] to toggle a fruit, " + "[grey](Press [blue]<space>[/] to toggle a fruit, " +
"[green]<enter>[/] to accept)[/]") "[green]<enter>[/] to accept)[/]")
.AddChoices(new[] { .AddChoices(new[] {
"Apple", "Apricot", "Avocado", "Apple", "Apricot", "Avocado",
"Banana", "Blackcurrant", "Blueberry", "Banana", "Blackcurrant", "Blueberry",
"Cherry", "Cloudberry", "Cocunut", "Cherry", "Cloudberry", "Coconut",
})); }));
// Write the selected fruits to the terminal // Write the selected fruits to the terminal
foreach (string fruit in fruits) foreach (string fruit in fruits)
{ {
AnsiConsole.WriteLine(fruit); AnsiConsole.WriteLine(fruit);
} }