Fix some typos

This commit is contained in:
Denis Glazachev
2019-03-30 21:03:06 +04:00
committed by Vinnie Falco
parent 658e678673
commit 24ccdd243a
4 changed files with 22 additions and 17 deletions

View File

@ -1,3 +1,9 @@
Version 243:
* Fix some typos
--------------------------------------------------------------------------------
Version 242:
* test::stream has deprecated lowest_layer for ssl

View File

@ -102,7 +102,6 @@ open(char const* path, file_mode mode, error_code& ec)
case file_mode::write_new:
{
#if BOOST_WORKAROUND(BOOST_MSVC, < 1910)
x
FILE* f0;
auto const ev = ::fopen_s(&f0, path, "rb");
if(ev)

View File

@ -545,11 +545,11 @@ public:
/** Constructor
@param method The request-method to use
@param method The request-method to use.
@param target The request-target.
@param version The HTTP-version
@param version The HTTP-version.
@note This function is only available when `isRequest == true`.
*/
@ -564,11 +564,11 @@ public:
/** Constructor
@param method The request-method to use
@param method The request-method to use.
@param target The request-target.
@param version The HTTP-version
@param version The HTTP-version.
@param body_arg An argument forwarded to the `body` constructor.
@ -588,11 +588,11 @@ public:
/** Constructor
@param method The request-method to use
@param method The request-method to use.
@param target The request-target.
@param version The HTTP-version
@param version The HTTP-version.
@param body_arg An argument forwarded to the `body` constructor.
@ -614,9 +614,9 @@ public:
/** Constructor
@param result The status-code for the response
@param result The status-code for the response.
@param version The HTTP-version
@param version The HTTP-version.
@note This member is only available when `isRequest == false`.
*/
@ -631,9 +631,9 @@ public:
/** Constructor
@param result The status-code for the response
@param result The status-code for the response.
@param version The HTTP-version
@param version The HTTP-version.
@param body_arg An argument forwarded to the `body` constructor.
@ -651,9 +651,9 @@ public:
/** Constructor
@param result The status-code for the response
@param result The status-code for the response.
@param version The HTTP-version
@param version The HTTP-version.
@param body_arg An argument forwarded to the `body` constructor.
@ -725,7 +725,7 @@ public:
/** Set or clear the chunked Transfer-Encoding
This function will set or removed the "chunked" transfer
This function will set or remove the "chunked" transfer
encoding as the last item in the list of encodings in the
field.

View File

@ -1634,7 +1634,7 @@ public:
This function is used to send a
<a href="https://tools.ietf.org/html/rfc6455#section-5.5.3">pong frame</a>,
which is usually sent automatically in response to a ping frame
from the the remote peer.
from the remote peer.
The call blocks until one of the following conditions is true:
@ -1661,7 +1661,7 @@ public:
This function is used to send a
<a href="https://tools.ietf.org/html/rfc6455#section-5.5.3">pong frame</a>,
which is usually sent automatically in response to a ping frame
from the the remote peer.
from the remote peer.
The call blocks until one of the following conditions is true:
@ -1688,7 +1688,7 @@ public:
This function is used to asynchronously send a
<a href="https://tools.ietf.org/html/rfc6455#section-5.5.3">pong frame</a>,
which is usually sent automatically in response to a ping frame
from the the remote peer.
from the remote peer.
@li The pong frame is written.