Skip to content

Commit c5c2067

Browse files
committed
Update AvoidDefaultTrueValueSwitchParameter.md
1 parent 6a9c132 commit c5c2067

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RuleDocumentation/AvoidDefaultTrueValueSwitchParameter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Wrong:
1818
Param
1919
( …
2020
$Param1,
21-
[Switch]
21+
[switch]
2222
$Switch=$True
2323
)
2424

@@ -27,6 +27,6 @@ Correct:
2727
Param
2828
( …
2929
$Param1,
30-
[Switch]
30+
[switch]
3131
$Switch=$False
3232
)

0 commit comments

Comments
 (0)