Skip to content

Commit 8e1b187

Browse files
committed
Update ProvideDefaultParameterValue.md
1 parent d6bde9d commit 8e1b187

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RuleDocumentation/ProvideDefaultParameterValue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Parameters must have a default value as uninitialized parameters will lead to po
77

88
##How to Fix
99

10-
To fix a violation of this rule, please specify a default value for all parameters
10+
To fix a violation of this rule, please specify a default value for all parameters.
1111

1212
##Example
1313

@@ -23,7 +23,7 @@ function Test($Param1)
2323
Correct:
2424

2525
```
26-
ffunction Test($Param1 = $null)
26+
function Test($Param1 = $null)
2727
{
2828
$Param1
2929
}

0 commit comments

Comments
 (0)