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 d629025 commit 3642d4fCopy full SHA for 3642d4f
RuleDocumentation/AvoidAlias.md
@@ -14,4 +14,4 @@ Please consider using full cmdlet name instead of alias.
14
15
Wrong: gps | Where-Object {$_.WorkingSet -gt 20000000}
16
17
-Correct: Get-Process | Where-Bbject {$_.WorkingSet -gt 20000000}
+Correct: Get-Process | Where-Object {$_.WorkingSet -gt 20000000}
0 commit comments