sander Sat May 25 06:23:43 2002 EDT
Modified files:
/phpdoc/en/reference/strings/functions echo.xml
Log:
Fix minor typos
Index: phpdoc/en/reference/strings/functions/echo.xml
diff -u phpdoc/en/reference/strings/functions/echo.xml:1.2
phpdoc/en/reference/strings/functions/echo.xml:1.3
--- phpdoc/en/reference/strings/functions/echo.xml:1.2 Wed Apr 17 02:44:14 2002
+++ phpdoc/en/reference/strings/functions/echo.xml Sat May 25 06:23:42 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
<refentry id="function.echo">
<refnamediv>
@@ -37,7 +37,7 @@
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 @@
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: