vrana           Fri Jan 13 14:42:06 2006 UTC

  Modified files:              
    /phpdoc/en/reference/sdo    reference.xml 
  Log:
  Typos (bug #35698)
  
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/sdo/reference.xml?r1=1.19&r2=1.20&diff_format=u
Index: phpdoc/en/reference/sdo/reference.xml
diff -u phpdoc/en/reference/sdo/reference.xml:1.19 
phpdoc/en/reference/sdo/reference.xml:1.20
--- phpdoc/en/reference/sdo/reference.xml:1.19  Fri Dec 16 03:33:00 2005
+++ phpdoc/en/reference/sdo/reference.xml       Fri Jan 13 14:42:06 2006
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.19 $ -->
+<!-- $Revision: 1.20 $ -->
 <!-- Purpose: database.abstract -->
 <!-- Membership: pecl -->
 <!-- State: experimental -->
@@ -966,26 +966,26 @@
   // value: 'Smith'
   // sequence index: NULL (append)
   // propertyIdentifier: 1 (firtName property index)
-  $letters_seq->insert('Smith', NULL, 1);
+  $letter_seq->insert('Smith', NULL, 1);
 
   // Append a lastName value to the sequence
   // value: 'Jones'
   // sequence index: NULL (append)
   // propertyIdentifier: 'lastName' (lastName property name)
-  $letters_seq->insert('Jones', NULL, 'lastName');
+  $letter_seq->insert('Jones', NULL, 'lastName');
 
   // Append unstructured text
   // value: 'Cancel Subscription.'
   // sequence index: absent (append)
   // propertyIdentifier: absent (unstructured text)
-  $letters_seq->insert('Cancel Subscription.');
+  $letter_seq->insert('Cancel Subscription.');
 
   // Insert new unstructured text.  Subsequent sequence values
   // are shifted up.                                       
   // value: 'Care of:'
   // sequence index: 1 (insert as second element)
   // propertyIdentifier: absent (unstructured text)
-  $letters_seq->insert('Care of:', 1);
+  $letter_seq->insert('Care of:', 1);
 ?>
 ]]>
      </programlisting>
@@ -1129,7 +1129,7 @@
     by the package prefix 'SDO_Model_'.  Finally, the third set are those 
     use by Data Access Service implementations and are identified by the 
     package prefix 'SDO_DAS_'.  The majority of SDO users will not need to 
-    use or understand the 'SDO_Model_ and 'SDO_DAS_' interfaces.
+    use or understand the 'SDO_Model_' and 'SDO_DAS_' interfaces.
    </para>
 
    <section id='sdo.class.sdo-apis'>
@@ -1416,7 +1416,7 @@
         <listitem>
          <para>
           <link linkend='function.SDO-Model-Property-isMany'>isMany</link>
-          - test to see if the property is many-valued..
+          - test to see if the property is many-valued.
          </para>
         </listitem>
         <listitem>

Reply via email to