Skip to content

Commit 6b187fe

Browse files
authored
Merge pull request #11730 from MicrosoftDocs/main
1/24/2025 PM Publish
2 parents 28240ce + ebef119 commit 6b187fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reference/docs-conceptual/learn/deep-dives/everything-about-null.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ If you use `$null` in a string, then it's a blank value (or empty string).
6161

6262
```powershell
6363
PS> $value = $null
64-
PS> Write-Output "The value is $value"
65-
The value is
64+
PS> Write-Output "'The value is $value'"
65+
'The value is '
6666
```
6767

6868
This is one of the reasons that I like to place brackets around variables when using them in log

0 commit comments

Comments
 (0)