Fix some busted escape sequences in docs, and slightly reformat a few examples

This commit is contained in:
ridiculousfish
2014-09-27 16:56:13 -07:00
parent 3ac28f2b01
commit 4f4734fc9b
2 changed files with 8 additions and 6 deletions

View File

@@ -51,8 +51,10 @@ If `-e` is used, the following sequences are recognized:
\fish
echo 'Hello World'
# Print hello world to stdout
echo -e 'Top\nBottom'
# Print Top and Bottom on separate lines, using an escape sequence
\endfish
Print hello world to stdout
\fish
echo -e 'Top\\nBottom'
\endfish
Print Top and Bottom on separate lines, using an escape sequence