From a3460cfbc665b58365534f9933840fd4be53efaf Mon Sep 17 00:00:00 2001 From: "Christoph Bergmeister [MVP]" Date: Fri, 20 Sep 2019 22:00:07 +0100 Subject: [PATCH] Fix typo in description of `PSTernaryOperator` experimental feature Also make it more consistent with others by not ending in a period. Period. --- .../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 3559477ce5d..71b0d0f86b9 100644 --- a/src/System.Management.Automation/engine/ExperimentalFeature/ExperimentalFeature.cs +++ b/src/System.Management.Automation/engine/ExperimentalFeature/ExperimentalFeature.cs @@ -114,7 +114,7 @@ static ExperimentalFeature() description: "New parameter set for ForEach-Object to run script blocks in parallel"), new ExperimentalFeature( name: "PSTernaryOperator", - description: "Support the ternary operator in PowerShell langauge.") + description: "Support the ternary operator in PowerShell language") }; EngineExperimentalFeatures = new ReadOnlyCollection(engineFeatures);