Skip to content

Commit fa8be44

Browse files
committed
Update AvoidReservedParams.md
1 parent 59243f2 commit fa8be44

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

RuleDocumentation/AvoidReservedParams.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Wrong:
1616

1717
function Test
1818
{
19-
2019
[CmdletBinding]
2120
Param($ErrorVariable, $b)
2221
}
@@ -25,7 +24,6 @@ Correct:
2524

2625
function Test
2726
{
28-
2927
[CmdletBinding]
3028
Param($err, $b)
3129
}

0 commit comments

Comments
 (0)