Skip to content

Commit

Permalink
Fix coconut spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
phillip-haydon committed Apr 24, 2023
1 parent d64d3ec commit 5843a45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/input/prompts/multiselection.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ var fruits = AnsiConsole.Prompt(
"[grey](Press [blue]<space>[/] to toggle a fruit, " +
"[green]<enter>[/] to accept)[/]")
.AddChoices(new[] {
"Apple", "Apricot", "Avocado",
"Apple", "Apricot", "Avocado",
"Banana", "Blackcurrant", "Blueberry",
"Cherry", "Cloudberry", "Cocunut",
"Cherry", "Cloudberry", "Coconut",
}));

// Write the selected fruits to the terminal
foreach (string fruit in fruits)
foreach (string fruit in fruits)
{
AnsiConsole.WriteLine(fruit);
}
Expand Down

0 comments on commit 5843a45

Please sign in to comment.