Justtechjobs.com Find a programming school near you






Online Campus Both


php-documentation-list | 2000092

[PHP-DOC] cvs: phpdoc /it/language references.xml From: Luca Perugini (l.perugini <email protected>)
Date: 09/17/00

perugini Sun Sep 17 12:59:24 2000 EDT

  Modified files:
    /phpdoc/it/language references.xml
  Log:
  Sync with en tree.
  
  
Index: phpdoc/it/language/references.xml
diff -u phpdoc/it/language/references.xml:1.1 phpdoc/it/language/references.xml:1.2
--- phpdoc/it/language/references.xml:1.1 Sun Aug 20 08:34:10 2000
+++ phpdoc/it/language/references.xml Sun Sep 17 12:59:23 2000
@@ -2,7 +2,7 @@
   <title>References Explained</title>
 
   <sect1 id="language.references.whatare">
- <title>What are References</title>
+ <title>What References Are</title>
    <simpara>
     References in PHP are means to call same variable content with
     different names. They are not like C pointers, they are symbol
@@ -16,7 +16,7 @@
   </sect1>
 
   <sect1 id="language.references.whatdo">
- <title>What do References</title>
+ <title>What References Do</title>
    <para>
     PHP references allow you to make two variables to refer to the
     same content. Meaning, when you do:
@@ -63,7 +63,7 @@
   </sect1>
 
   <sect1 id="language.references.arent">
- <title>What aren't References</title>
+ <title>What References Are Not</title>
    <para>
     As said above, references aren't pointers. That means, the
     following construct won't do what you expect:
@@ -143,7 +143,7 @@
   </sect1>
 
   <sect1 id="language.references.spot">
- <title>Spotting the Reference</title>
+ <title>Spotting References</title>
    <simpara>
     Many syntax constructs in PHP are implemented via referencing
     mechanisms, so everything told above about reference binding also