opts: fix bad example formatting \n => \\n

...to render properly nroff.
This commit is contained in:
Daniel Stenberg 2017-05-06 23:51:29 +02:00
parent 271c63748a
commit 289236b223
20 changed files with 22 additions and 22 deletions

View file

@ -47,7 +47,7 @@ if(curl) {
long code;
res = curl_easy_getinfo(curl, CURLINFO_HTTP_CONNECTCODE, &code);
if(!res && code)
printf("The CONNECT response code: %03ld\n", code);
printf("The CONNECT response code: %03ld\\n", code);
}
curl_easy_cleanup(curl);
}