summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSvyatoslav Mishyn <juef@openmailbox.org>2015-08-25 08:31:02 +0300
committerDaniel Stenberg <daniel@haxx.se>2015-08-25 22:44:22 +0200
commitac7be02e695af95e93b3f5a40b80dcab782f5321 (patch)
treee82e895e471a9bca7ae1659ad8f325406b63ae2c
parent37f173cfd01c6bfedd20f534fea7521b9f26099a (diff)
downloadcurl-ac7be02e695af95e93b3f5a40b80dcab782f5321.tar.gz
curl_easy_escape.3: escape '\n'
Closes #398
-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 a7e50e396..c57aeb192 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\n", output);
+ printf("Encoded: %s\en", output);
curl_free(output);
}
}