Skip to content

Commit 2728193

Browse files
committed
Update AvoidReservedParams.md
1 parent cb15dbc commit 2728193

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RuleDocumentation/AvoidReservedParams.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ Wrong:
1616

1717
function test
1818
{
19-
[CmdletBinding]
20-
Param($ErrorVariable, $b)
19+
[CmdletBinding]
20+
Param($ErrorVariable, $b)
2121
}
2222

2323
Correct:
2424

2525
function test
2626
{
27-
[CmdletBinding]
28-
Param($err, $b)
27+
[CmdletBinding]
28+
Param($err, $b)
2929
}

0 commit comments

Comments
 (0)