docs: fix unescaped '\n' in man pages

Closes https://github.com/bagder/curl/pull/459
This commit is contained in:
Svyatoslav Mishyn
2015-09-27 23:44:31 -04:00
committed by Jay Satiro
parent af90becf4b
commit 963b7bd4f7
4 changed files with 6 additions and 6 deletions

View File

@@ -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);
}
}