From f6cee687315a44f6f3e299a3ea5bca3cba7b136b Mon Sep 17 00:00:00 2001 From: TheIncorrigible1 Date: Sat, 15 Sep 2018 05:34:12 -0400 Subject: [PATCH] Updated example and corrected argument type. (#1069) IndentationSize had the wrong type attributed to it. Added use of `Kind` in the example. --- RuleDocumentation/UseConsistentIndentation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RuleDocumentation/UseConsistentIndentation.md b/RuleDocumentation/UseConsistentIndentation.md index 51c32ba18..ade8866f4 100644 --- a/RuleDocumentation/UseConsistentIndentation.md +++ b/RuleDocumentation/UseConsistentIndentation.md @@ -15,6 +15,7 @@ Indentation should be consistent throughout the source file. PSUseConsistentIndentation = @{ Enable = $true IndentationSize = 4 + Kind = 'space' } } ``` @@ -25,7 +26,7 @@ Indentation should be consistent throughout the source file. Enable or disable the rule during ScriptAnalyzer invocation. -#### IndentationSize: bool (Default value is `4`) +#### IndentationSize: int (Default value is `4`) Indentation size in the number of space characters.