Fix backtick that was messing up syntax highlighting on powershell.

This commit is contained in:
Samantha McVey 2016-11-23 09:43:37 -08:00
parent c518beae09
commit 152fddbd92
No known key found for this signature in database
GPG Key ID: A68DF012C3881D62

View File

@ -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