curl_escape.3: fix typo

lengthf -> length

Closes #9517
This commit is contained in:
Sergey Bronnikov 2022-09-16 16:32:57 +03:00 committed by Daniel Stenberg
parent 29a6cf968e
commit 62b8a4dd1c
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -38,7 +38,7 @@ return that as a new allocated string. All input characters that are not a-z,
A-Z or 0-9 will be converted to their "URL escaped" version (%NN where NN is a A-Z or 0-9 will be converted to their "URL escaped" version (%NN where NN is a
two-digit hexadecimal number). two-digit hexadecimal number).
If the \fBlengthf\fP argument is set to 0, curl_escape() will use strlen() on If the \fBlength\fP argument is set to 0, curl_escape() will use strlen() on
the input \fBurl\fP string to find out the size. the input \fBurl\fP string to find out the size.
You must \fIcurl_free(3)\fP the returned string when you are done with it. You must \fIcurl_free(3)\fP the returned string when you are done with it.