update wording to reflect new api

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@332986 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Joe Watkins 2014-03-13 15:50:33 +00:00
parent e483c805dd
commit 4fcca4ebb5

View file

@ -6,7 +6,7 @@
<titleabbrev>Modifiers</titleabbrev>
<para>
pthreads overrides the functionality of the protected and private method modifiers in order to provide functionality more suited to multi-threaded objects.
pthreads applies this functionality to all Thread, Worker and Stackable objects from creation.
pthreads applies this functionality to all Threaded objects from creation.
</para>
<example>
<title>protected method example: protected methods can only be executed by one Thread at a time.</title>
@ -35,7 +35,7 @@ if ($thread->start()) {
</programlisting>
</example>
<example>
<title>private method example: private methods may only be executed by the Thread, Worker, or Stackable during execution</title>
<title>private method example: private methods may only be executed by the Threaded object during execution</title>
<programlisting role="php">
<![CDATA[
<?php