From: Daniel Stenberg Date: Wed, 20 Oct 2021 06:41:06 +0000 (+0200) Subject: curl_easy_perform.3: minor wording tweak X-Git-Tag: curl-7_80_0~89 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9fa1ce4e13a8b103cef962ed68a70bcdc646c875;p=thirdparty%2Fcurl.git curl_easy_perform.3: minor wording tweak --- diff --git a/docs/libcurl/curl_easy_perform.3 b/docs/libcurl/curl_easy_perform.3 index 4a32408817..4450ebcf19 100644 --- a/docs/libcurl/curl_easy_perform.3 +++ b/docs/libcurl/curl_easy_perform.3 @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * -.\" * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +.\" * Copyright (C) 1998 - 2021, Daniel Stenberg, , et al. .\" * .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms @@ -29,12 +29,12 @@ curl_easy_perform - perform a blocking file transfer .ad .SH DESCRIPTION Invoke this function after \fIcurl_easy_init(3)\fP and all the -\fIcurl_easy_setopt(3)\fP calls are made, and will perform the transfer as +\fIcurl_easy_setopt(3)\fP calls are made, and it performs the transfer as described in the options. It must be called with the same \fBeasy_handle\fP as input as the \fIcurl_easy_init(3)\fP call returned. \fIcurl_easy_perform(3)\fP performs the entire request in a blocking manner -and returns when done, or if it failed. For non-blocking behavior, see +and returns when done, or earlier if it fails. For non-blocking behavior, see \fIcurl_multi_perform(3)\fP. You can do any amount of calls to \fIcurl_easy_perform(3)\fP while using the