summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSamantha McVey <samantham@posteo.net>2016-11-23 09:43:37 -0800
committerSamantha McVey <samantham@posteo.net>2016-11-23 09:43:37 -0800
commit152fddbd9245c6380f7113eb7639fbf0d1fd1c2c (patch)
tree87cf8459f46e37b2551361a2477c8dc919ff98c2
parentc518beae09eafa02a392a1ea35782871f85c6311 (diff)
Fix backtick that was messing up syntax highlighting on powershell.
-rw-r--r--powershell.html.markdown2
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