From 4e4a118ac8f272c7981dd5253663751f177b31ed Mon Sep 17 00:00:00 2001 From: Konstantinos Kanakis <97809370+c7c3r0@users.noreply.github.com> Date: Sat, 1 Oct 2022 22:23:30 +0200 Subject: [PATCH] Update AboutStrings.Koans.ps1 Changed to correct variable for finding Powershell's home folder. --- PSKoans/Koans/Introduction/AboutStrings.Koans.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PSKoans/Koans/Introduction/AboutStrings.Koans.ps1 b/PSKoans/Koans/Introduction/AboutStrings.Koans.ps1 index 188eb59c8..5f770fd5f 100644 --- a/PSKoans/Koans/Introduction/AboutStrings.Koans.ps1 +++ b/PSKoans/Koans/Introduction/AboutStrings.Koans.ps1 @@ -65,7 +65,7 @@ Describe 'Strings' { This could be the result of a typing mistake. #> - $String = "PowerShell's home folder is: $SPHome" + $String = "PowerShell's home folder is: $PSHome" "____" | Should -Be $String }