From f1c0815916170c8d5cbf21cfabc7264ff5517b88 Mon Sep 17 00:00:00 2001 From: Mukund Kukreja <103610317+mk3-20@users.noreply.github.com> Date: Sun, 25 Aug 2024 01:43:09 +0530 Subject: [PATCH] [powershell/en] Fixed typo variable name (#5044) --- powershell.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powershell.html.markdown b/powershell.html.markdown index 5116fac8..775c17e0 100644 --- a/powershell.html.markdown +++ b/powershell.html.markdown @@ -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