From adca5e47bf1f1bae0cc713821695e126f577bf75 Mon Sep 17 00:00:00 2001 From: Sander Roobol Date: Sat, 25 May 2002 10:23:42 +0000 Subject: [PATCH] Fix minor typos git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@83413 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/echo.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: