mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
e483c805dd
commit
4fcca4ebb5
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue