summaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_unescape.3
diff options
context:
space:
mode:
Diffstat (limited to 'docs/libcurl/curl_unescape.3')
-rw-r--r--docs/libcurl/curl_unescape.36
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/libcurl/curl_unescape.3 b/docs/libcurl/curl_unescape.3
index b2a83b2de..70645fe6c 100644
--- a/docs/libcurl/curl_unescape.3
+++ b/docs/libcurl/curl_unescape.3
@@ -28,7 +28,7 @@ curl_unescape - URL decodes the given string
.nf
#include <curl/curl.h>
-char *curl_unescape( const char *url, int length);
+char *curl_unescape(const char *url, int length);
.fi
.SH DESCRIPTION
Obsolete function. Use \fIcurl_easy_unescape(3)\fP instead!
@@ -38,8 +38,8 @@ string" and return that as a new allocated string. All input characters that
are URL encoded (%XX where XX is a two-digit hexadecimal number) will be
converted to their plain text versions.
-If the 'length' argument is set to 0, \fIcurl_unescape(3)\fP will use strlen()
-on the input \fBurl\fP string to find out the size.
+If the \fBlength\fP argument is set to 0, \fIcurl_unescape(3)\fP 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.
.SH EXAMPLE