Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions chmonly/integration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@
the help content is stored in HTML files, you can show pages of the CHM
in Internet Explorer.
</para>
<para>
<simpara>
Assume that you placed your <filename>php_manual_en.chm</filename> to
<filename>c:\phpmanual</filename> the index file in the manual (which
you see the first time) can be accessed with the following URL:
<literal>mk:@MSITStore:C:\phpmanual\php_manual_en.chm::/_index.html</literal>.
Here <literal>mk:@MSITStore:</literal> is the special "protocol",
<filename>C:\phpmanual\php_manual_en.chm</filename> is the CHM with it's
<filename>C:\phpmanual\php_manual_en.chm</filename> is the CHM with its
full path. The <filename>/_index.html</filename> part is the path to the
index file inside the CHM and <literal>::</literal> is just what you need
to put between the CHM path and this file path.
</para>
</simpara>
<para>
<note>
<para>
Expand Down
2 changes: 1 addition & 1 deletion reference/cmark/commonmark.cql.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<formalpara>
<title>Paths:</title>
<para>
In it's most simplistic form, a CQL query combines the following paths and <literal>/</literal> to describe how to travel through a tree:
In its most simplistic form, a CQL query combines the following paths and <literal>/</literal> to describe how to travel through a tree:
<simplelist>
<member>firstChild</member>
<member>lastChild</member>
Expand Down
6 changes: 3 additions & 3 deletions reference/dom/domdocument/getelementbyid.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
<xref linkend="domdocument.getelementsbytagname"/> but
searches for an element with a given id.
</para>
<para>
<simpara>
For this function to work, you will need either to set some ID attributes
with <xref linkend="domelement.setidattribute"/>
or a DTD which defines an attribute to be of type ID.
In the later case, you will need to validate your document with
In the latter case, you will need to validate your document with
<xref linkend="domdocument.validate"/>
or <link linkend="domdocument.props.validateonparse">DOMDocument::$validateOnParse</link> before using this function.
</para>
</simpara>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
Expand Down
6 changes: 3 additions & 3 deletions reference/dom/domnode/removechild.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<modifier>public</modifier> <type class="union"><type>DOMNode</type><type>false</type></type><methodname>DOMNode::removeChild</methodname>
<methodparam><type>DOMNode</type><parameter>child</parameter></methodparam>
</methodsynopsis>
<para>
This functions removes a child from a list of children.
</para>
<simpara>
This function removes a child from a list of children.
</simpara>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
Expand Down
2 changes: 1 addition & 1 deletion reference/ds/ds/deque/contains.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var_dump($deque->contains(...['c', 'b', 'a'])); // true
var_dump($deque->contains(1)); // true
var_dump($deque->contains('1')); // false

var_dump($sequece->contains(...[])); // true
var_dump($deque->contains(...[])); // true
?>
]]>
</programlisting>
Expand Down
2 changes: 1 addition & 1 deletion reference/ds/ds/deque/rotate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ $deque = new \Ds\Deque(["a", "b", "c", "d"]);
$deque->rotate(1); // "a" is shifted, then pushed.
print_r($deque);

$deque->rotate(2); // "b" and "c" are both shifted, the pushed.
$deque->rotate(2); // "b" and "c" are both shifted, then pushed.
print_r($deque);
?>
]]>
Expand Down
2 changes: 1 addition & 1 deletion reference/ds/ds/sequence/contains.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var_dump($sequence->contains(...['c', 'b', 'a'])); // true
var_dump($sequence->contains(1)); // true
var_dump($sequence->contains('1')); // false

var_dump($sequece->contains(...[])); // true
var_dump($sequence->contains(...[])); // true
?>
]]>
</programlisting>
Expand Down
2 changes: 1 addition & 1 deletion reference/ds/ds/sequence/rotate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ $sequence = new \Ds\Vector(["a", "b", "c", "d"]);
$sequence->rotate(1); // "a" is shifted, then pushed.
print_r($sequence);

$sequence->rotate(2); // "b" and "c" are both shifted, the pushed.
$sequence->rotate(2); // "b" and "c" are both shifted, then pushed.
print_r($sequence);
?>
]]>
Expand Down
2 changes: 1 addition & 1 deletion reference/ds/ds/vector/contains.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var_dump($vector->contains(...['c', 'b', 'a'])); // true
var_dump($vector->contains(1)); // true
var_dump($vector->contains('1')); // false

var_dump($sequece->contains(...[])); // true
var_dump($vector->contains(...[])); // true
?>
]]>
</programlisting>
Expand Down
2 changes: 1 addition & 1 deletion reference/ds/ds/vector/rotate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ $vector = new \Ds\Vector(["a", "b", "c", "d"]);
$vector->rotate(1); // "a" is shifted, then pushed.
print_r($vector);

$vector->rotate(2); // "b" and "c" are both shifted, the pushed.
$vector->rotate(2); // "b" and "c" are both shifted, then pushed.
print_r($vector);
?>
]]>
Expand Down
2 changes: 1 addition & 1 deletion reference/ev/ev/feedsignal.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="ev.feedsignal">
<refnamediv>
<refname>Ev::feedSignal</refname>
<refpurpose>Feed a signal event info Ev</refpurpose>
<refpurpose>Feed a signal event into Ev</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
Expand Down
2 changes: 1 addition & 1 deletion reference/ev/ev/now.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<classname>EvTimer</classname>
and
<classname>EvPeriodic</classname>)
are based on, and referring to it is usually faster then calling
are based on, and referring to it is usually faster than calling
<methodname>Ev::time</methodname>.
</simpara>
</refsect1>
Expand Down
2 changes: 1 addition & 1 deletion reference/ev/ev/resume.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
methods suspend and resume a loop correspondingly.
</simpara>
<simpara>
All timer watchers will be delayed by the time spend between
All timer watchers will be delayed by the time spent between
<emphasis>suspend</emphasis>
and
<emphasis>resume</emphasis>,
Expand Down
2 changes: 1 addition & 1 deletion reference/ev/ev/suspend.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
methods suspend and resume the default loop correspondingly.
</simpara>
<simpara>
All timer watchers will be delayed by the time spend between
All timer watchers will be delayed by the time spent between
<emphasis>suspend</emphasis>
and
<emphasis>resume</emphasis>,
Expand Down
4 changes: 2 additions & 2 deletions reference/ev/evprepare/createstopped.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<simpara>
Creates a stopped instance of EvPrepare watcher. Unlike
<methodname>EvPrepare::__construct</methodname>,
this method doesn&apos; start the watcher automatically.
this method doesn&apos;t start the watcher automatically.
</simpara>
</refsect1>
<refsect1 role="parameters">
Expand Down Expand Up @@ -73,7 +73,7 @@
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<simpara>
Return EvPrepare object on success.
Returns EvPrepare object on success.
</simpara>
</refsect1>
<refsect1 role="seealso">
Expand Down
2 changes: 1 addition & 1 deletion reference/ev/evsignal/createstopped.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<simpara>
Create stopped EvSignal watcher object. Unlike
<methodname>EvSignal::__construct</methodname>,
this method does&apos;t start the watcher automatically.
this method doesn&apos;t start the watcher automatically.
</simpara>
</refsect1>
<refsect1 role="parameters">
Expand Down
2 changes: 1 addition & 1 deletion reference/ev/watcher-callbacks.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
(or
<methodname>EvLoop::child</methodname>)
sets
<constant>EV::CHILD</constant>,
<constant>Ev::CHILD</constant>,
<classname>EvPrepare</classname>
(or
<methodname>EvLoop::prepare</methodname>)
Expand Down
2 changes: 1 addition & 1 deletion reference/event/eventbuffer/pullup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<refnamediv>
<refname>EventBuffer::pullup</refname>
<refpurpose>Linearizes data within buffer
and returns it's contents as a string</refpurpose>
and returns its contents as a string</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
Expand Down
2 changes: 1 addition & 1 deletion reference/event/eventbufferevent/sslerror.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<programlisting role="php">
<![CDATA[
<?php
// This callback is invoked when some even occurs on the event listener,
// This callback is invoked when some event occurs on the event listener,
// e.g. connection closed, or an error occurred
function ssl_event_cb($bev, $events, $ctx) {
if ($events & EventBufferEvent::ERROR) {
Expand Down
6 changes: 3 additions & 3 deletions reference/event/eventdnsbase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<!-- {{{ EventDnsBase intro -->
<section xml:id="eventdnsbase.intro">
&reftitle.intro;
<para>
<simpara>
Represents Libevent&apos;s DNS base structure. Used to resolve DNS
asyncronously, parse configuration files like resolv.conf etc.
</para>
asynchronously, parse configuration files like resolv.conf etc.
</simpara>
</section>
<!-- }}} -->
<section xml:id="eventdnsbase.synopsis">
Expand Down
6 changes: 3 additions & 3 deletions reference/event/eventhttprequest/senderror.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
<parameter>reason</parameter>
</term>
<listitem>
<para>
A brief explanation ofthe error. If &null;, the standard meaning of the
<simpara>
A brief explanation of the error. If &null;, the standard meaning of the
error code will be used.
</para>
</simpara>
</listitem>
</varlistentry>
</variablelist>
Expand Down
2 changes: 1 addition & 1 deletion reference/event/examples.xml
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class MySslEchoServer {
$bev->writeBuffer($in);
}

// This callback is invoked when some even occurs on the event listener,
// This callback is invoked when some event occurs on the event listener,
// e.g. connection closed, or an error occurred
function ssl_event_cb($bev, $events, $ctx) {
if ($events & EventBufferEvent::ERROR) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
If the cascade output change fraction is low, the output connections will be trained more and if the fraction is high,
they will be trained less.
</para>
<para>
The default cascade output change fraction is 0.01, which is equalent to a 1% change in MSE.
</para>
<simpara>
The default cascade output change fraction is 0.01, which is equivalent to a 1% change in MSE.
</simpara>
</refsect1>

<refsect1 role="parameters">
Expand Down
6 changes: 3 additions & 3 deletions reference/fann/functions/fann-get-layer-array.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@

<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
An array of numbers of neurons in each leayer
</para>
<simpara>
An array of numbers of neurons in each layer
</simpara>
</refsect1>

</refentry>
Expand Down
6 changes: 3 additions & 3 deletions reference/fann/functions/fann-get-num-layers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
The number of leayers in the neural network, or &false; on error.
</para>
<simpara>
The number of layers in the neural network, or &false; on error.
</simpara>
</refsect1>


Expand Down
2 changes: 1 addition & 1 deletion reference/imagick/imagick/forwardfouriertransformimage.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function createMask() {
$draw->setStrokeColor('rgb(255, 255, 255)');
$draw->setFillColor('rgb(255, 255, 255)');

//Draw a circle on the y-axis, with it's centre
//Draw a circle on the y-axis, with its centre
//at x, y that touches the origin
$draw->circle(250, 250, 220, 250);

Expand Down
6 changes: 3 additions & 3 deletions reference/intl/intlcalendar/getleastmaximum.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
<methodparam><type>IntlCalendar</type><parameter>calendar</parameter></methodparam>
<methodparam><type>int</type><parameter>field</parameter></methodparam>
</methodsynopsis>
<para>
<simpara>
Returns the smallest local maximumw for a field. This should be a value
smaller or equal to that returned by
<function>IntlCalendar::getActualMaxmimum</function>, which is in its turn
<function>IntlCalendar::getActualMaximum</function>, which is in its turn
smaller or equal to that returned by
<function>IntlCalendar::getMaximum</function>.
</para>
</simpara>
</refsect1>

<refsect1 role="parameters">
Expand Down
6 changes: 3 additions & 3 deletions reference/outcontrol/user-level-output-buffers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@

<section xml:id="outcontrol.operations-on-buffers">
<title>Operations Allowed On Buffers</title>
<para>
<simpara>
The operations allowed on buffers can be controlled
by passing one of the
<link linkend="outcontrol.constants.buffer-control-flags">buffer control flags</link>
Expand All @@ -178,8 +178,8 @@
If omitted, all operations are allowed by default.
If <literal>0</literal> is used instead,
the buffer cannot be flushed, cleaned or removed
but it's contents can still be retrieved.
</para>
but its contents can still be retrieved.
</simpara>
<para>
<constant>PHP_OUTPUT_HANDLER_CLEANABLE</constant> allows
<function>ob_clean</function> to clean the contents of the buffer.
Expand Down
6 changes: 3 additions & 3 deletions reference/ps/functions/ps-hyphenate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
<varlistentry>
<term><parameter>text</parameter></term>
<listitem>
<para>
<simpara>
<parameter>text</parameter> should not contain any non alpha
characters. Possible positions for breaks are returned in an array of
interger numbers. Each number is the position of the char in
integer numbers. Each number is the position of the char in
<parameter>text</parameter> after which a hyphenation can take place.
</para>
</simpara>
</listitem>
</varlistentry>
</variablelist>
Expand Down
6 changes: 3 additions & 3 deletions reference/yaf/yaf_view_simple/assignref.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
<varlistentry>
<term><parameter>name</parameter></term>
<listitem>
<para>
A string name which will be used to access the value in the tempalte.
</para>
<simpara>
A string name which will be used to access the value in the template.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
Expand Down
2 changes: 1 addition & 1 deletion reference/zookeeper/zookeeper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@
<varlistentry xml:id="zookeeper.constants.child-event">
<term><constant>Zookeeper::CHILD_EVENT</constant></term>
<listitem>
<para>A change as occurred in the list of children</para>
<simpara>A change has occurred in the list of children</simpara>
<para>This is only generated by watches on the child list of a node. These watches are set using Zookeeper::getChildren.</para>
</listitem>
</varlistentry>
Expand Down
8 changes: 4 additions & 4 deletions reference/zookeeper/zookeeper/addauth.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
This method emits PHP error/warning when parameters count or types are wrong or operation fails.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
<simpara>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and its derivatives.
</simpara>
</caution>
</refsect1>

Expand All @@ -84,7 +84,7 @@
<programlisting role="php">
<![CDATA[
<?php
$zookeeper = new Zookeeper('locahost:2181');
$zookeeper = new Zookeeper('localhost:2181');
$path = '/path/to/node';
$value = 'nodevalue';
$zookeeper->set($path, $value);
Expand Down
6 changes: 3 additions & 3 deletions reference/zookeeper/zookeeper/close.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

<refsect1 role="errors">
&reftitle.errors;
<para>
This method emits <classname>ZookeeperException</classname> and it's derivatives when closing an uninitialized instance.
</para>
<simpara>
This method emits <classname>ZookeeperException</classname> and its derivatives when closing an uninitialized instance.
</simpara>
</refsect1>

<refsect1 role="seealso">
Expand Down
Loading