From 0bdf0da31885a209bd0ed282294db793dc24b222 Mon Sep 17 00:00:00 2001 From: Romain Prieto Date: Sun, 11 May 2014 21:11:46 +1000 Subject: [PATCH] echo: fix token syntax + 1 example per description --- pages/common/echo.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pages/common/echo.md b/pages/common/echo.md index 5c907919b..8ff849c78 100644 --- a/pages/common/echo.md +++ b/pages/common/echo.md @@ -2,12 +2,10 @@ > Print given arguments -- Print text message. Note: quots are optional +- Print a text message. Note: quotes are optional. -`echo Hello World` -or -`echo "Hello World"` +`echo {{"Hello World"}}` -- Print message with variable $PATH +- Print a message with environment variables -`echo "My path is $PATH"` \ No newline at end of file +`echo {{"My path is $PATH"}}`