From d2750caeb1aa056d9dae9ddf64099611bc5efb1d Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 13 Jan 2006 14:42:06 +0000 Subject: [PATCH] Typos (bug #35698) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@205147 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/sdo/reference.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/reference/sdo/reference.xml b/reference/sdo/reference.xml index 900d085ae9..1074aca7dd 100644 --- a/reference/sdo/reference.xml +++ b/reference/sdo/reference.xml @@ -1,5 +1,5 @@ - + @@ -966,26 +966,26 @@ sdoxml:propertyType="company:EmployeeType"/> // 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); ?> ]]> @@ -1129,7 +1129,7 @@ manager 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.
@@ -1416,7 +1416,7 @@ manager isMany - - test to see if the property is many-valued.. + - test to see if the property is many-valued.