aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_easy_escape.3
diff options
context:
space:
mode:
authorSvyatoslav Mishyn <juef@openmailbox.org>2015-09-27 23:44:31 -0400
committerJay Satiro <raysatiro@yahoo.com>2015-09-27 23:45:41 -0400
commit963b7bd4f76fd0e19beaa202bf6f5239eb6153a5 (patch)
treefad0927ea158f12c2f0327f6ee427fced4ded9af /docs/libcurl/curl_easy_escape.3
parentaf90becf4b91be3b45d9bbafa6366ed901c2572c (diff)
docs: fix unescaped '\n' in man pages
Closes https://github.com/bagder/curl/pull/459
Diffstat (limited to 'docs/libcurl/curl_easy_escape.3')
-rw-r--r--docs/libcurl/curl_easy_escape.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/curl_easy_escape.3 b/docs/libcurl/curl_easy_escape.3
index c57aeb192..95da51538 100644
--- a/docs/libcurl/curl_easy_escape.3
+++ b/docs/libcurl/curl_easy_escape.3
@@ -49,7 +49,7 @@ CURL *curl = curl_easy_init();
if(curl) {
char *output = curl_easy_escape(curl, "data to convert", 15);
if(output) {
- printf("Encoded: %s\en", output);
+ printf("Encoded: %s\\n", output);
curl_free(output);
}
}