alindeman Thu Mar 28 11:24:13 2002 EDT
Modified files:
/phpdoc/en/faq using.xml
Log:
typos
Index: phpdoc/en/faq/using.xml
diff -u phpdoc/en/faq/using.xml:1.14 phpdoc/en/faq/using.xml:1.15
--- phpdoc/en/faq/using.xml:1.14 Fri Feb 15 04:12:58 2002
+++ phpdoc/en/faq/using.xml Thu Mar 28 11:24:13 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.14 $ -->
+<!-- $Revision: 1.15 $ -->
<chapter id="faq.using">
<title>Using PHP</title>
<titleabbrev>Using PHP</titleabbrev>
@@ -100,7 +100,7 @@
<para>
In PHP, the ending for a block of code is either "?>" or
"?>\n" (where \n means a newline). So in the example above,
- the echoed sentences will be on one line, because PHP ommits
+ the echoed sentences will be on one line, because PHP omits
the newlines after the block ending. This means that you need to
insert an extra newline after each block of PHP code to make
it print out one newline.