We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6bde9d commit 8e1b187Copy full SHA for 8e1b187
RuleDocumentation/ProvideDefaultParameterValue.md
@@ -7,7 +7,7 @@ Parameters must have a default value as uninitialized parameters will lead to po
7
8
##How to Fix
9
10
-To fix a violation of this rule, please specify a default value for all parameters
+To fix a violation of this rule, please specify a default value for all parameters.
11
12
##Example
13
@@ -23,7 +23,7 @@ function Test($Param1)
23
Correct:
24
25
```
26
-ffunction Test($Param1 = $null)
+function Test($Param1 = $null)
27
{
28
$Param1
29
}
0 commit comments