You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Model/Constants.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ internal static partial class Constants
86
86
internalconststringLocaleEnUs="en-US";
87
87
internalconststringskippingMessageFmt="'{0}' exists, skipping. Use -Force to overwrite.";
88
88
internalconststringConfirmParameterDescription="Prompts you for confirmation before running the cmdlet.";
89
-
internalconststringWhatIfParameterDescription="Tells PowerShell to run the command in a mode that only reports what would happen, but not actually let the command run or make changes.";
89
+
internalconststringWhatIfParameterDescription="Runs the command in a mode that only reports what would happen without performing the actions.";
90
90
91
91
// TODO: ProgressAction is not a common parameter for all versions of PowerShell.
92
92
// This should not be added under all circumstances.
Copy file name to clipboardExpand all lines: test/Pester/NewMarkdownHelp.Tests.ps1
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -654,7 +654,7 @@ Write-Host 'Hello World!'
654
654
655
655
It 'should have a description for Confirm and WhatIf parameters' {
656
656
$file| Should -FileContentMatch 'Prompts you for confirmation before running the cmdlet.'
657
-
$file| Should -FileContentMatch 'Tells PowerShell to run the command in a mode that only reports what would happen, but not actually let the command run or make changes.'
657
+
$file| Should -FileContentMatch 'Runs the command in a mode that only reports what would happen without performing the actions.'
0 commit comments