From 5843a4545e9eab6501786dab51215c42955b4664 Mon Sep 17 00:00:00 2001 From: Phillip Haydon Date: Mon, 24 Apr 2023 14:37:06 +0800 Subject: [PATCH] Fix coconut spelling --- docs/input/prompts/multiselection.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/input/prompts/multiselection.md b/docs/input/prompts/multiselection.md index 85cf810..4e11b26 100644 --- a/docs/input/prompts/multiselection.md +++ b/docs/input/prompts/multiselection.md @@ -29,13 +29,13 @@ var fruits = AnsiConsole.Prompt( "[grey](Press [blue][/] to toggle a fruit, " + "[green][/] 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); }