mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Typos (bug #35698)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@205147 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
d6542d37de
commit
d2750caeb1
1 changed files with 7 additions and 7 deletions
|
@ -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 @@ sdoxml:propertyType="company:EmployeeType"/> </xsd:complexType>
|
|||
// 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 @@ 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.
|
||||
</para>
|
||||
|
||||
<section id='sdo.class.sdo-apis'>
|
||||
|
@ -1416,7 +1416,7 @@ manager
|
|||
<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>
|
||||
|
|
Loading…
Reference in a new issue