From 97c3c39ac268fde4d7520b19f60db7af72d3fed0 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 12 Jan 2023 12:27:50 +0900 Subject: [PATCH] Fix typo in ModuleCmdletBase.cs Implict -> Implicit --- .../engine/Modules/ModuleCmdletBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Management.Automation/engine/Modules/ModuleCmdletBase.cs b/src/System.Management.Automation/engine/Modules/ModuleCmdletBase.cs index 117c19c9b1e..7c81939fe02 100644 --- a/src/System.Management.Automation/engine/Modules/ModuleCmdletBase.cs +++ b/src/System.Management.Automation/engine/Modules/ModuleCmdletBase.cs @@ -5723,7 +5723,7 @@ internal PSModuleInfo LoadModule(PSModuleInfo parentModule, string fileName, str if (!module.SessionState.Internal.UseExportList) { // For cross language boundaries don't implicitly export all functions, unless they are allowed nested modules. - // Implict function export is allowed when any of the following is true: + // Implicit function export is allowed when any of the following is true: // - Nested modules are allowed by module manifest // - The import context language mode is FullLanguage // - This script module not running as trusted (FullLanguage)