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 1c0dfc2 commit d629025Copy full SHA for d629025
RuleDocumentation/AvoidAlias.md
@@ -12,6 +12,6 @@ Please consider using full cmdlet name instead of alias.
12
13
##Example
14
15
-Wrong: gps | where-object {$_.WorkingSet -gt 20000000}
+Wrong: gps | Where-Object {$_.WorkingSet -gt 20000000}
16
17
-Correct: get-process | where-object {$_.WorkingSet -gt 20000000}
+Correct: Get-Process | Where-Bbject {$_.WorkingSet -gt 20000000}
0 commit comments