[powershell/en] Fixed typo variable name (#5044)

This commit is contained in:
Mukund Kukreja 2024-08-25 01:43:09 +05:30 committed by GitHub
parent 555e655749
commit f1c0815916
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,7 +126,7 @@ $a = (1,2,3,4)
$b = $a # => Point b at what a is pointing to
$b -is $a.GetType() # => True, a and b equal same type
$b -eq $a # => None! See below
[System.Collections.Hashtable]$b = @{} # => Point a at a new hash table
[System.Collections.Hashtable]$b = @{} # => Point b at a new hash table
$b = @{'one' = 1
'two' = 2}
$b -is $a.GetType() # => False, a and b types not equal