From 045d0922c868ca6abbb47662edda97b91381c9fa Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Fri, 29 Oct 2021 23:47:42 +0200 Subject: [PATCH] fixed spelling in Exception --- src/Spectre.Console/Prompts/MultiSelectionPrompt.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spectre.Console/Prompts/MultiSelectionPrompt.cs b/src/Spectre.Console/Prompts/MultiSelectionPrompt.cs index 8b92b16..69eef59 100644 --- a/src/Spectre.Console/Prompts/MultiSelectionPrompt.cs +++ b/src/Spectre.Console/Prompts/MultiSelectionPrompt.cs @@ -122,7 +122,7 @@ namespace Spectre.Console var promptItem = Tree.Find(item); if (promptItem == null) { - throw new ArgumentOutOfRangeException(nameof(item), "item not found in tree."); + throw new ArgumentOutOfRangeException(nameof(item), "Item not found in tree."); } var parents = new List>();