diff options
| author | Gisle Vanem <gisle.vanem@gmail.com> | 2019-01-29 16:42:22 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-29 16:42:22 +0100 | 
| commit | 06f744d447af6648a00f0571116b5b901854abc4 (patch) | |
| tree | 4ddf66684a07263a3db4a18745f0a5e31929fbaa /docs | |
| parent | 3de607415c4e54206e33f677cfdc225cd1256357 (diff) | |
Escape the '\'
A backslash should be escaped in Roff / Troff.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/libcurl/curl_url.3 | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/curl_url.3 b/docs/libcurl/curl_url.3 index a14c45b6d..f366f88a2 100644 --- a/docs/libcurl/curl_url.3 +++ b/docs/libcurl/curl_url.3 @@ -48,7 +48,7 @@ Returns a \fBCURLU *\fP if successful, or NULL if out of memory.      char *scheme;      rc = curl_url_get(url, CURLUPART_SCHEME, &scheme, 0);      if(!rc) { -      printf("the scheme is %s\n", scheme); +      printf("the scheme is %s\\n", scheme);        curl_free(scheme);      }      curl_url_cleanup(url);  | 
