From 4fcca4ebb5f0ae702ea38d413ab35d2cef267eac Mon Sep 17 00:00:00 2001 From: Joe Watkins Date: Thu, 13 Mar 2014 15:50:33 +0000 Subject: [PATCH] update wording to reflect new api git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@332986 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/pthreads/modifiers.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/pthreads/modifiers.xml b/reference/pthreads/modifiers.xml index 412988e43b..3495d568af 100644 --- a/reference/pthreads/modifiers.xml +++ b/reference/pthreads/modifiers.xml @@ -6,7 +6,7 @@ Modifiers 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. protected method example: protected methods can only be executed by one Thread at a time. @@ -35,7 +35,7 @@ if ($thread->start()) { - private method example: private methods may only be executed by the Thread, Worker, or Stackable during execution + private method example: private methods may only be executed by the Threaded object during execution