From ebef119c7d646608d08f77787de9d96caef32df7 Mon Sep 17 00:00:00 2001 From: Daniel Brandenburg <59375397+daniel-brandenburg@users.noreply.github.com> Date: Fri, 24 Jan 2025 16:47:52 +0100 Subject: [PATCH] Add space at end of line where there should be one present (#11729) * Update everything-about-null.md Add space at end of line * Clarify null value output in PowerShell Wrapped output in single quotes because we don't allow trailing spaces in our documents. --------- Co-authored-by: Sean Wheeler --- .../docs-conceptual/learn/deep-dives/everything-about-null.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/docs-conceptual/learn/deep-dives/everything-about-null.md b/reference/docs-conceptual/learn/deep-dives/everything-about-null.md index f41954f890da..de0611dcb9ab 100644 --- a/reference/docs-conceptual/learn/deep-dives/everything-about-null.md +++ b/reference/docs-conceptual/learn/deep-dives/everything-about-null.md @@ -61,8 +61,8 @@ If you use `$null` in a string, then it's a blank value (or empty string). ```powershell PS> $value = $null -PS> Write-Output "The value is $value" -The value is +PS> Write-Output "'The value is $value'" +'The value is ' ``` This is one of the reasons that I like to place brackets around variables when using them in log