imajes          Thu Jul 11 19:37:01 2002 EDT

  Modified files:              
    /phpdoc/en/language types.xml 
  Log:
  heredoc is one word.
  
  
Index: phpdoc/en/language/types.xml
diff -u phpdoc/en/language/types.xml:1.84 phpdoc/en/language/types.xml:1.85
--- phpdoc/en/language/types.xml:1.84   Mon Jun 10 05:15:36 2002
+++ phpdoc/en/language/types.xml        Thu Jul 11 19:37:00 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.84 $ -->
+<!-- $Revision: 1.85 $ -->
  <chapter id="language.types">
   <title>Types</title>
 
@@ -681,7 +681,7 @@
     <sect3 id="language.types.string.syntax.heredoc">
      <title>Heredoc</title>
      <simpara>
-      Another way to delimit strings is by using here doc syntax
+      Another way to delimit strings is by using heredoc syntax
       ("&lt;&lt;&lt;").  One should provide an identifier after
       <literal>&lt;&lt;&lt;</literal>, then the string, and then the
       same identifier to close the quotation. 
@@ -723,14 +723,14 @@
      </warning>
 
      <para>
-      Here doc text behaves just like a double-quoted string, without
+      Heredoc text behaves just like a double-quoted string, without
       the double-quotes. This means that you do not need to escape quotes
       in your here docs, but you can still use the escape codes listed
       above. Variables are expanded, but the same care must be taken
       when expressing complex variables inside a here doc as with
       strings.
       <example> 
-       <title>Here doc string quoting example</title>
+       <title>Heredoc string quoting example</title>
        <programlisting role="php">
 <![CDATA[
 <?php
@@ -769,7 +769,7 @@
   
      <note>
       <para>
-       Here doc support was added in PHP 4.
+       Heredoc support was added in PHP 4.
       </para>
      </note>
   



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to