diff --git a/docs/libcurl/opts/CURLINFO_CERTINFO.md b/docs/libcurl/opts/CURLINFO_CERTINFO.md index 0882cbccd1..4d95ad7509 100644 --- a/docs/libcurl/opts/CURLINFO_CERTINFO.md +++ b/docs/libcurl/opts/CURLINFO_CERTINFO.md @@ -33,7 +33,7 @@ CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_CERTINFO, # DESCRIPTION -Pass a pointer to a *struct curl_certinfo ** and it is set to point to a +Pass a pointer to a `struct curl_certinfo *` and it is set to point to a struct that holds info about the server's certificate chain, assuming you had CURLOPT_CERTINFO(3) enabled when the request was made. diff --git a/scripts/cd2nroff b/scripts/cd2nroff index 23fc4285cb..3f5a447929 100755 --- a/scripts/cd2nroff +++ b/scripts/cd2nroff @@ -421,7 +421,7 @@ sub single { # **bold** $d =~ s/\*\*(\S.*?)\*\*/\\fB$1\\fP/g; # *italics* - $d =~ s/\*(\S.*?)\*/\\fI$1\\fP/g; + $d =~ s/\*(\w.*?[\w)])\*/\\fI$1\\fP/g; my $back = $d;