diff options
author | Samantha McVey <samantham@posteo.net> | 2016-11-23 09:43:37 -0800 |
---|---|---|
committer | Samantha McVey <samantham@posteo.net> | 2016-11-23 09:43:37 -0800 |
commit | 152fddbd9245c6380f7113eb7639fbf0d1fd1c2c (patch) | |
tree | 87cf8459f46e37b2551361a2477c8dc919ff98c2 /powershell.html.markdown | |
parent | c518beae09eafa02a392a1ea35782871f85c6311 (diff) |
Fix backtick that was messing up syntax highlighting on powershell.
Diffstat (limited to 'powershell.html.markdown')
-rw-r--r-- | powershell.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
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 |