Skip to content

Commit de3cf0b

Browse files
committed
Update AvoidShouldContinueWithoutForce.md
1 parent c5c2067 commit de3cf0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RuleDocumentation/AvoidShouldContinueWithoutForce.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Wrong:
2121
HelpUri = 'http://www.microsoft.com/',
2222
ConfirmImpact='Medium')]
2323
[Alias()]
24-
[OutputType([String])]
24+
[OutputType([string])]
2525
Param
2626
(
2727
# Param1 help description
@@ -50,7 +50,7 @@ Wrong:
5050
[Parameter(ParameterSetName='Another Parameter Set')]
5151
[ValidatePattern("[a-z]*")]
5252
[ValidateLength(0,15)]
53-
[String]
53+
[string]
5454
$Param3
5555
)
5656

@@ -79,7 +79,7 @@ Correct:
7979
HelpUri = 'http://www.microsoft.com/',
8080
ConfirmImpact='Medium')]
8181
[Alias()]
82-
[OutputType([String])]
82+
[OutputType([string])]
8383
Param
8484
(
8585
# Param1 help description
@@ -110,7 +110,7 @@ Correct:
110110
[Parameter(ParameterSetName='Another Parameter Set')]
111111
[ValidatePattern("[a-z]*")]
112112
[ValidateLength(0,15)]
113-
[String]
113+
[string]
114114
$Param3,
115115
[bool]
116116
$Force

0 commit comments

Comments
 (0)