diff --git a/reference/strings/functions/echo.xml b/reference/strings/functions/echo.xml index 8e62dfdd9e..9a680eb136 100644 --- a/reference/strings/functions/echo.xml +++ b/reference/strings/functions/echo.xml @@ -1,5 +1,5 @@ - + @@ -37,7 +37,7 @@ output as well"; echo "This spans\nmultiple lines. The newlines will be\noutput as well."; -echo "escaping characters is done \"Like this\"." +echo "Escaping characters is done \"Like this\"."; //You can use variables inside of an echo statement $foo = "foobar"; @@ -59,7 +59,7 @@ that the here document terminator must appear on a line with just a semicolon no extra whitespace! END; -// because echo is not a function, following code is invalid. +// Because echo is not a function, following code is invalid. ($some_var) ? echo('true'): echo('false'); // However, the following examples will work: