docs: remove bold from some man page SYNOPSIS sections

In the name of consistency

Closes #12267
This commit is contained in:
Daniel Stenberg 2023-11-04 12:01:50 +01:00
parent b3c4bbfcaa
commit 0f3e9d5723
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
5 changed files with 12 additions and 9 deletions

View File

@ -26,9 +26,9 @@
curl_easy_pause - pause and unpause a connection
.SH SYNOPSIS
.nf
.B #include <curl/curl.h>
#include <curl/curl.h>
.BI "CURLcode curl_easy_pause(CURL *"handle ", int "bitmask ");"
CURLcode curl_easy_pause(CURL *handle, int bitmask );
.fi
.SH DESCRIPTION
Using this function, you can explicitly mark a running connection to get

View File

@ -26,7 +26,7 @@
curl_formget - serialize a previously built multipart form POST chain
.SH SYNOPSIS
.nf
.B #include <curl/curl.h>
#include <curl/curl.h>
int curl_formget(struct curl_httppost * form, void *userp,
curl_formget_callback append );

View File

@ -26,8 +26,9 @@
curl_multi_strerror - return string describing error code
.SH SYNOPSIS
.nf
.B #include <curl/curl.h>
.BI "const char *curl_multi_strerror(CURLMcode " errornum ");"
#include <curl/curl.h>
const char *curl_multi_strerror(CURLMcode errornum);
.SH DESCRIPTION
This function returns a string describing the \fICURLMcode\fP error code
passed in the argument \fIerrornum\fP.

View File

@ -26,8 +26,9 @@
curl_share_strerror - return string describing error code
.SH SYNOPSIS
.nf
.B #include <curl/curl.h>
.BI "const char *curl_share_strerror(CURLSHcode " errornum ");"
#include <curl/curl.h>
const char *curl_share_strerror(CURLSHcode errornum);
.SH DESCRIPTION
The \fIcurl_share_strerror(3)\fP function returns a string describing the
\fICURLSHcode\fP error code passed in the argument \fIerrornum\fP.

View File

@ -26,8 +26,9 @@
curl_url_strerror - return string describing error code
.SH SYNOPSIS
.nf
.B #include <curl/curl.h>
.BI "const char *curl_url_strerror(CURLUcode " errornum ");"
#include <curl/curl.h>
const char *curl_url_strerror(CURLUcode errornum);
.SH DESCRIPTION
This function returns a string describing the CURLUcode error code passed in
the argument \fIerrornum\fP.