]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl_escape.3: fix typo
authorSergey Bronnikov <estetus@gmail.com>
Fri, 16 Sep 2022 13:32:57 +0000 (16:32 +0300)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 16 Sep 2022 14:50:36 +0000 (16:50 +0200)
lengthf -> length

Closes #9517

docs/libcurl/curl_escape.3

index 8e8b2f1f7089b002f8e91f48d14a5600c798240a..b4832263863f87e3335f6835e4912f5ff2459449 100644 (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
 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.
 
 You must \fIcurl_free(3)\fP the returned string when you are done with it.