From c5b177cd73a43def0258953b330cde0b26e1d3ce Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 3 Mar 2022 21:26:49 +0900 Subject: [PATCH] Fix typo in CommandHelpProvider.cs non-existant -> non-existent --- src/System.Management.Automation/help/CommandHelpProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Management.Automation/help/CommandHelpProvider.cs b/src/System.Management.Automation/help/CommandHelpProvider.cs index 2abfbeaee22..e32d1c86354 100644 --- a/src/System.Management.Automation/help/CommandHelpProvider.cs +++ b/src/System.Management.Automation/help/CommandHelpProvider.cs @@ -1275,7 +1275,7 @@ internal override IEnumerable ProcessForwardedHelp(HelpInfo helpInfo, } catch (CommandNotFoundException) { - // ignore errors for aliases pointing to non-existant commands + // ignore errors for aliases pointing to non-existent commands } }