summaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_easy_option_by_id.3
diff options
context:
space:
mode:
Diffstat (limited to 'docs/libcurl/curl_easy_option_by_id.3')
-rw-r--r--docs/libcurl/curl_easy_option_by_id.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/curl_easy_option_by_id.3 b/docs/libcurl/curl_easy_option_by_id.3
index 23066ffc1..cd213bdfa 100644
--- a/docs/libcurl/curl_easy_option_by_id.3
+++ b/docs/libcurl/curl_easy_option_by_id.3
@@ -41,7 +41,7 @@ If libcurl has no option with the given id, this function returns NULL.
.nf
const struct curl_easyoption *opt = curl_easy_option_by_id(CURLOPT_URL);
if(opt) {
- printf("This option wants type %x\n", opt->type);
+ printf("This option wants type %x\\n", opt->type);
}
.fi
.SH AVAILABILITY