From c6b30d0570e357bd2d9f3ddec12c4c6567fb7c00 Mon Sep 17 00:00:00 2001 From: Alvaro Del Valle Date: Fri, 6 Dec 2019 21:55:47 -0600 Subject: [PATCH] Fix typo in description for Get-ExperimentalFeature PSWindowsPowerShellCompatibility --- .../engine/ExperimentalFeature/ExperimentalFeature.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Management.Automation/engine/ExperimentalFeature/ExperimentalFeature.cs b/src/System.Management.Automation/engine/ExperimentalFeature/ExperimentalFeature.cs index a260956bcba..5a36feb85a6 100644 --- a/src/System.Management.Automation/engine/ExperimentalFeature/ExperimentalFeature.cs +++ b/src/System.Management.Automation/engine/ExperimentalFeature/ExperimentalFeature.cs @@ -138,7 +138,7 @@ static ExperimentalFeature() #if !UNIX new ExperimentalFeature( name: "PSWindowsPowerShellCompatibility", - description: "Load non-PSCore-compartible modules into Windows PowerShell over PS Remoting") + description: "Load non-PSCore-compatible modules into Windows PowerShell over PS Remoting") #endif }; EngineExperimentalFeatures = new ReadOnlyCollection(engineFeatures);