Skip to content

Commit 9bfb659

Browse files
committed
Update AvoidUninitializedVariable.md
1 parent 0245e93 commit 9bfb659

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

RuleDocumentation/AvoidUninitializedVariable.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Wrong:
1717

1818
function NotGlobal {
1919
$localVars = "Localization?"
20-
$unitialized
21-
Write-Output $unitialized
20+
$uninitialized
21+
Write-Output $uninitialized
2222
}
2323

2424

@@ -27,4 +27,4 @@ Correct:
2727
function NotGlobal {
2828
$localVars = "Localization?"
2929
Write-Output $localVars
30-
}
30+
}

0 commit comments

Comments
 (0)