diff --git a/powershell.html.markdown b/powershell.html.markdown
index 573b5440..bd46051c 100644
--- a/powershell.html.markdown
+++ b/powershell.html.markdown
@@ -74,7 +74,7 @@ $aHashtable = @{name1='val1'; name2='val2'}
# Using variables:
echo $aString
echo "Interpolation: $aString"
-echo "`$aString has length of $($aString.Length)"
+echo "$aString has length of $($aString.Length)"
echo '$aString'
echo @"
This is a Here-String