From b004b4fb5ad1be9be4cffdd753da3de0ad2d3abb Mon Sep 17 00:00:00 2001 From: Kevin Wong <25396158+not-not-kevin@users.noreply.github.com> Date: Tue, 19 Sep 2023 19:40:15 -0700 Subject: [PATCH] Update everything-about-if.md --- .../docs-conceptual/learn/deep-dives/everything-about-if.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/docs-conceptual/learn/deep-dives/everything-about-if.md b/reference/docs-conceptual/learn/deep-dives/everything-about-if.md index dadc59fc245f..63566185fabb 100644 --- a/reference/docs-conceptual/learn/deep-dives/everything-about-if.md +++ b/reference/docs-conceptual/learn/deep-dives/everything-about-if.md @@ -422,7 +422,7 @@ other values. if ( Get-Process Notepad* ) ``` -It evaluates to `$true` if there's a returned process and `$false` if there'sn'thing. It's +It evaluates to `$true` if there's a returned process and `$false` if there isn't. It's perfectly valid to use pipeline expressions or other PowerShell statements like this: ```powershell