Commit f61cfc59 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Anthony Bryan's man page cleanup in language and spelling

parent 27b8a5fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -31,7 +31,7 @@ the connection you want to pause or unpause.
The \fBbitmask\fP argument is a set of bits that sets the new state of the
The \fBbitmask\fP argument is a set of bits that sets the new state of the
connection. The following bits can be used:
connection. The following bits can be used:
.IP CURLPAUSE_RECV
.IP CURLPAUSE_RECV
Pause receiving data. There will be no data received on this conneciton until
Pause receiving data. There will be no data received on this connection until
this function is called again without this bit set. Thus, the write callback
this function is called again without this bit set. Thus, the write callback
(\fICURLOPT_WRITEFUNCTION\fP) won't be called.
(\fICURLOPT_WRITEFUNCTION\fP) won't be called.
.IP CURLPAUSE_SEND
.IP CURLPAUSE_SEND
+81 −82

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Original line Diff line number Diff line
@@ -13,7 +13,7 @@ curl_formfree - free a previously build multipart/formdata HTTP POST chain
.SH DESCRIPTION
.SH DESCRIPTION
curl_formfree() is used to clean up data previously built/appended with
curl_formfree() is used to clean up data previously built/appended with
\fIcurl_formadd(3)\fP. This must be called when the data has been used, which
\fIcurl_formadd(3)\fP. This must be called when the data has been used, which
typically means after the \fIcurl_easy_perform(3)\fP has been called.
typically means after \fIcurl_easy_perform(3)\fP has been called.
.SH RETURN VALUE
.SH RETURN VALUE
None
None
.SH "SEE ALSO"
.SH "SEE ALSO"
+1 −1
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@
.\"
.\"
.TH curl_formget 3 "20 June 2006" "libcurl 7.15.5" "libcurl Manual"
.TH curl_formget 3 "20 June 2006" "libcurl 7.15.5" "libcurl Manual"
.SH NAME
.SH NAME
curl_formget - serialize a previously build multipart/formdata HTTP POST chain
curl_formget - serialize a previously built multipart/formdata HTTP POST chain
.SH SYNOPSIS
.SH SYNOPSIS
.B #include <curl/curl.h>
.B #include <curl/curl.h>
.sp
.sp
+3 −3
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@
.\"
.\"
.TH curl_getdate 3 "12 Aug 2005" "libcurl 7.0" "libcurl Manual"
.TH curl_getdate 3 "12 Aug 2005" "libcurl 7.0" "libcurl Manual"
.SH NAME
.SH NAME
curl_getdate - Convert an date string to number of seconds since January 1,
curl_getdate - Convert a date string to number of seconds since January 1,
1970
1970
.SH SYNOPSIS
.SH SYNOPSIS
.B #include <curl/curl.h>
.B #include <curl/curl.h>
@@ -27,7 +27,7 @@ items:
.TP 0.8i
.TP 0.8i
.B calendar date items
.B calendar date items
Can be specified several ways. Month names can only be three-letter english
Can be specified several ways. Month names can only be three-letter english
abbrivations, numbers can be zero-prefixed and the year may use 2 or 4 digits.
abbreviations, numbers can be zero-prefixed and the year may use 2 or 4 digits.
Examples: 06 Nov 1994, 06-Nov-94 and Nov-94 6.
Examples: 06 Nov 1994, 06-Nov-94 and Nov-94 6.
.TP
.TP
.B time of the day items
.B time of the day items
@@ -96,5 +96,5 @@ The former version of this function was built with yacc and was not only very
large, it was also never quite understood and it wasn't possible to build with
large, it was also never quite understood and it wasn't possible to build with
non-GNU tools since only GNU Bison could make it thread-safe!
non-GNU tools since only GNU Bison could make it thread-safe!


The rewrite was done for 7.12.2. The new one is much smaller and use simpler
The rewrite was done for 7.12.2. The new one is much smaller and uses simpler
code.
code.
Loading