docs: fix unescaped '\n' in man pages
Closes https://github.com/bagder/curl/pull/459
This commit is contained in:

committed by
Jay Satiro

parent
af90becf4b
commit
963b7bd4f7
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user