From fa217b971dfc90b8a3177520dfc5e26071df2efd Mon Sep 17 00:00:00 2001 From: michael-hollingsworth Date: Tue, 25 Aug 2026 20:11:16 -0400 Subject: [PATCH] Add missing space and fix incorrect backtick --- reference/7.6/Microsoft.PowerShell.Core/About/about_PSItem.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/7.6/Microsoft.PowerShell.Core/About/about_PSItem.md b/reference/7.6/Microsoft.PowerShell.Core/About/about_PSItem.md index 05081d210098..f8f235f631f7 100644 --- a/reference/7.6/Microsoft.PowerShell.Core/About/about_PSItem.md +++ b/reference/7.6/Microsoft.PowerShell.Core/About/about_PSItem.md @@ -14,7 +14,7 @@ The automatic variable that contains the current object in the pipeline object. ## Long description -PowerShell includes two [automatic variables][03], `$_` and '$PSItem` that +PowerShell includes two [automatic variables][03], `$_` and `$PSItem` that refer to the current object in the pipeline. `$PSItem` was added to PowerShell in an attempt to provide a clearer meaning to @@ -27,7 +27,7 @@ with `$_` in every example. `$_` is the preferred usage. There are a few common use cases for `$PSItem`: - In the scriptblock for the **Process** parameter of the - `ForEach-Object`cmdlet + `ForEach-Object` cmdlet - In the scriptblock for the **FilterScript** parameter of the `Where-Object` cmdlet - In the intrinsic methods **ForEach** and **Where**