Skip to content

Commit 05f7e90

Browse files
authored
Fixes 11299 - Corrected property name typo (#11300)
Co-authored-by: Mike F. Robbins <[email protected]>
1 parent d44bd43 commit 05f7e90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/docs-conceptual/learn/ps101/04-pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ Select-Object -Property DisplayName, Running, Status |
304304
Where-Object CanPauseAndContinue
305305
```
306306

307-
The command in the previous example doesn't return any results because the **CanStopAndContinue**
307+
The command in the previous example doesn't return any results because the **CanPauseAndContinue**
308308
property doesn't exist when the results of `Select-Object` are piped to `Where-Object`. That
309309
particular property wasn't "selected". In essence, it was filtered out. Reversing the order of
310310
`Select-Object` and `Where-Object` produces the desired results.

0 commit comments

Comments
 (0)