avsm Sun Apr 15 10:23:21 2001 EDT
Modified files:
/phpdoc/en/functions strings.xml
Log:
Fix typos
Index: phpdoc/en/functions/strings.xml
diff -u phpdoc/en/functions/strings.xml:1.82 phpdoc/en/functions/strings.xml:1.83
--- phpdoc/en/functions/strings.xml:1.82 Sun Apr 15 10:16:47 2001
+++ phpdoc/en/functions/strings.xml Sun Apr 15 10:23:21 2001
@@ -292,7 +292,7 @@
<refnamediv>
<refname>count_chars</refname>
<refpurpose>
- Return information abouts characters used in a string
+ Return information about characters used in a string
</refpurpose>
</refnamediv>
<refsect1>
@@ -309,7 +309,7 @@
</funcprototype>
</funcsynopsis>
<para>
- Counts the number of occurances of every byte-value (0..255) in
+ Counts the number of occurrences of every byte-value (0..255) in
<parameter>string</parameter> and returns it in various ways.
The optional parameter <parameter>Mode</parameter> default to
0. Depending on <parameter>mode</parameter>
@@ -317,7 +317,7 @@
<itemizedlist>
<listitem>
<simpara>
- 0 - an array with the byte-value as key and the freqency of
+ 0 - an array with the byte-value as key and the frequency of
every byte as value.
</simpara>
</listitem>
@@ -369,7 +369,7 @@
<para>
Generates the cyclic redundancy checksum polynomial of 32-bit lengths of
the <parameter>str</parameter>. This is usually used to validate the
- integrity of data being trasmited.
+ integrity of data being transmitted.
</para>
<para>
See also: <function>md5</function>
@@ -488,7 +488,7 @@
</simpara>
<para>
<function>Echo</function> is not actually a function (it is a
- language construct) so you are not required to use parantheses
+ language construct) so you are not required to use parentheses
with it. In fact, if you want to pass more than one parameter
to echo, you must not enclose the parameters within parentheses.
<example>
@@ -567,7 +567,7 @@
Returns an array of strings, each of which is a substring of
<parameter>string</parameter> formed by splitting it on boundaries formed
by the string <parameter>delim</parameter>.
- If <parameter>limit</parameter> is set, the returned array will contaion
+ If <parameter>limit</parameter> is set, the returned array will contain
a maximum of <parameter>limit</parameter> elements with the last element
containing the whole rest of <parameter>string</parameter>.
</para>
@@ -1018,7 +1018,7 @@
but still expensive).
</para>
<para>
- In its simpelest form the function will take only the two
+ In its simplest form the function will take only the two
strings as parameter and will calculate just the number of
insert, replace and delete operations needed to transform
<parameter>str1</parameter> into <parameter>str2</parameter>.
@@ -1152,7 +1152,7 @@
</row>
<row>
<entry>mon_thousands_sep</entry>
- <entry>Monetary thousands seperator</entry>
+ <entry>Monetary thousands separator</entry>
</row>
<row>
<entry>mon_grouping</entry>
@@ -1180,7 +1180,7 @@
</row>
<row>
<entry>p_sep_by_space</entry>
- <entry>True if a space seperates currency_symbol from a positive value, false
otherwise</entry>
+ <entry>True if a space separates currency_symbol from a positive value, false
+otherwise</entry>
</row>
<row>
<entry>n_cs_precedes</entry>
@@ -1188,7 +1188,7 @@
</row>
<row>
<entry>n_sep_by_space</entry>
- <entry>True if a space seperates currency_symbol from a negative value, false
otherwise</entry>
+ <entry>True if a space separates currency_symbol from a negative value, false
+otherwise</entry>
</row>
<row valign="top">
<entry>p_sign_posn</entry>
@@ -1711,7 +1711,7 @@
</para>
<para>
Setlocale returns the new current locale, or false if the locale
- functionality is not implemented in the plattform, the specified
+ functionality is not implemented in the platform, the specified
locale does not exist or the category name is invalid.
An invalid category name also causes a warning message.
</para>
@@ -2393,7 +2393,7 @@
)
</programlisting>
</informalexample>
- For more infomation see: Martin Pool's <ulink
+ For more information see: Martin Pool's <ulink
url="&url.strnatcmp;">Natural Order String Comparison</ulink>
page.
</para>
@@ -2437,7 +2437,7 @@
<para>
This function implements a comparison algorithm that orders
alphanumeric strings in the way a human being would. The
- behavior of this function is similar to
+ behaviour of this function is similar to
<function>strnatcmp</function>, except that the comparison is
not case sensitive. For more infomation see: Martin Pool's
<ulink url="&url.strnatcmp;">Natural Order String
@@ -2524,7 +2524,7 @@
</funcsynopsis>
<para>
This functions returns the <parameter>input</parameter> string
- padded on the left, the right, or both sides to the specifed
+ padded on the left, the right, or both sides to the specified
padding length. If the optional argument
<parameter>pad_string</parameter> is not supplied, the
<parameter>input</parameter> is padded with spaces, otherwise it
@@ -3421,7 +3421,7 @@
</funcprototype>
</funcsynopsis>
<para>
- Retuns a string with the first character of each word in
+ Returns a string with the first character of each word in
<parameter>str</parameter> capitalized, if that character is
alphabetic.
<example>
@@ -3488,7 +3488,7 @@
<para>
If the <parameter>cut</parameter> is set to 1, the string is
always wrapped at the specified width. So if you have a word
- that is larger than the given width, it is broken appart.
+ that is larger than the given width, it is broken apart.
(See second example).
<note>
<para>