betz            Sat Jul 19 15:37:59 2003 EDT

  Modified files:              
    /phpdoc/en/language constants.xml operators.xml 
  Log:
  WS fix, no tabs
  
  
Index: phpdoc/en/language/constants.xml
diff -u phpdoc/en/language/constants.xml:1.33 phpdoc/en/language/constants.xml:1.34
--- phpdoc/en/language/constants.xml:1.33       Tue Jun 10 00:30:35 2003
+++ phpdoc/en/language/constants.xml    Sat Jul 19 15:37:59 2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.33 $ -->
+<!-- $Revision: 1.34 $ -->
  <chapter id="language.constants">
   <title>Constants</title>
 
@@ -20,7 +20,6 @@
 
    <!-- TODO: Example of valid & invalid constant names -->
   </para>
-                                     
   <note>
    <simpara>
     For our purposes here, a letter is a-z, A-Z, and the ASCII
Index: phpdoc/en/language/operators.xml
diff -u phpdoc/en/language/operators.xml:1.52 phpdoc/en/language/operators.xml:1.53
--- phpdoc/en/language/operators.xml:1.52       Sat Jun 21 12:06:20 2003
+++ phpdoc/en/language/operators.xml    Sat Jul 19 15:37:59 2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.52 $ -->
+<!-- $Revision: 1.53 $ -->
  <chapter id="language.operators">
   <title>Operators</title>
   <simpara>
@@ -295,30 +295,30 @@
        <entry>$a ^ $b</entry>
        <entry>Xor</entry>
        <entry>
-       Bits that are set in $a or $b but not both are set.
+        Bits that are set in $a or $b but not both are set.
        </entry>
       </row>
       <row>
        <entry>~ $a</entry>
        <entry>Not</entry>
        <entry>
-       Bits that are set in $a are not set, and vice versa.
+        Bits that are set in $a are not set, and vice versa.
        </entry>
       </row>
       <row>
        <entry>$a &lt;&lt; $b</entry>
        <entry>Shift left</entry>
        <entry>
-       Shift the bits of $a $b steps to the left (each step means
-       "multiply by two")
+        Shift the bits of $a $b steps to the left (each step means
+        "multiply by two")
        </entry>
       </row>
       <row>
        <entry>$a &gt;&gt; $b</entry>
        <entry>Shift right</entry>
        <entry>
-       Shift the bits of $a $b steps to the right (each step means
-       "divide by two")
+        Shift the bits of $a $b steps to the right (each step means
+        "divide by two")
        </entry>
       </row>
      </tbody>
@@ -354,8 +354,8 @@
        <entry>$a === $b</entry>
        <entry>Identical</entry>
        <entry>
-       &true; if $a is equal to $b, and they are of the same
-       type. (PHP 4 only)
+        &true; if $a is equal to $b, and they are of the same
+        type. (PHP 4 only)
        </entry>
       </row>
       <row>
@@ -372,8 +372,8 @@
        <entry>$a !== $b</entry>
        <entry>Not identical</entry>
        <entry>
-       &true; if $a is not equal to $b, or they are not of the same
-       type. (PHP 4 only)
+        &true; if $a is not equal to $b, or they are not of the same
+        type. (PHP 4 only)
        </entry>
       </row>
       <row>



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

Reply via email to