diff --git a/reference/docs-conceptual/learn/ps101/04-pipelines.md b/reference/docs-conceptual/learn/ps101/04-pipelines.md index ab9c89fe24da..d6262617af4b 100644 --- a/reference/docs-conceptual/learn/ps101/04-pipelines.md +++ b/reference/docs-conceptual/learn/ps101/04-pipelines.md @@ -304,7 +304,7 @@ Select-Object -Property DisplayName, Running, Status | Where-Object CanPauseAndContinue ``` -The command in the previous example doesn't return any results because the **CanStopAndContinue** +The command in the previous example doesn't return any results because the **CanPauseAndContinue** property doesn't exist when the results of `Select-Object` are piped to `Where-Object`. That particular property wasn't "selected". In essence, it was filtered out. Reversing the order of `Select-Object` and `Where-Object` produces the desired results.