From 4fcec3377257b42d7a14f3ffa5e62cf4d4d412e4 Mon Sep 17 00:00:00 2001 From: Baard Hermansen Date: Thu, 12 Dec 2019 19:11:24 +0100 Subject: [PATCH] Update ShouldProcess.md Removed double words. --- RuleDocumentation/ShouldProcess.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RuleDocumentation/ShouldProcess.md b/RuleDocumentation/ShouldProcess.md index 51cff102a..aa5c74214 100644 --- a/RuleDocumentation/ShouldProcess.md +++ b/RuleDocumentation/ShouldProcess.md @@ -4,7 +4,7 @@ ## Description -If a cmdlet declares the `SupportsShouldProcess` attribute, then it should also call `ShouldProcess`. A violation is any function which either declares `SupportsShouldProcess` attribute but makes no calls to `ShouldProcess` or it calls `ShouldProcess` but does not does not declare `SupportsShouldProcess` +If a cmdlet declares the `SupportsShouldProcess` attribute, then it should also call `ShouldProcess`. A violation is any function which either declares `SupportsShouldProcess` attribute but makes no calls to `ShouldProcess` or it calls `ShouldProcess` but does not declare `SupportsShouldProcess` For more information, please refer to `about_Functions_Advanced_Methods` and `about_Functions_CmdletBindingAttribute`