From b653253e42693d51085cc03257f56b5d75626b02 Mon Sep 17 00:00:00 2001 From: Joe Watkins Date: Wed, 5 Nov 2014 09:18:06 +0000 Subject: [PATCH] remove the incorrect use of the word parallel from curl_multi_* documentation git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@335160 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/curl/functions/curl-multi-add-handle.xml | 2 +- reference/curl/functions/curl-multi-close.xml | 2 +- reference/curl/functions/curl-multi-exec.xml | 2 +- reference/curl/functions/curl-multi-init.xml | 4 ++-- reference/curl/functions/curl-multi-setopt.xml | 3 +-- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/reference/curl/functions/curl-multi-add-handle.xml b/reference/curl/functions/curl-multi-add-handle.xml index 678d37952b..6ed774bb8f 100644 --- a/reference/curl/functions/curl-multi-add-handle.xml +++ b/reference/curl/functions/curl-multi-add-handle.xml @@ -44,7 +44,7 @@ <function>curl_multi_add_handle</function> example This example will create two cURL handles, add them to a multi - handle, and then run them in parallel. + handle, and process them asynchronously. curl_multi_close example This example will create two cURL handles, add them to a multi - handle, and then run them in parallel. + handle, and process them asynchronously. curl_multi_exec example This example will create two cURL handles, add them to a multi - handle, and then run them in parallel. + handle, and process them asynchronously. - Allows the processing of multiple cURL handles in parallel. + Allows the processing of multiple cURL handles asynchronously. @@ -36,7 +36,7 @@ <function>curl_multi_init</function> example This example will create two cURL handles, add them to a multi - handle, and then run them in parallel. + handle, and process them asynchronously.