diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6ee0a388..6e6f604e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+Version 243:
+
+* Fix some typos
+
+--------------------------------------------------------------------------------
+
Version 242:
* test::stream has deprecated lowest_layer for ssl
diff --git a/include/boost/beast/core/impl/file_stdio.ipp b/include/boost/beast/core/impl/file_stdio.ipp
index 44bfb22e..0b24074c 100644
--- a/include/boost/beast/core/impl/file_stdio.ipp
+++ b/include/boost/beast/core/impl/file_stdio.ipp
@@ -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)
diff --git a/include/boost/beast/http/message.hpp b/include/boost/beast/http/message.hpp
index cf205924..f02a38b0 100644
--- a/include/boost/beast/http/message.hpp
+++ b/include/boost/beast/http/message.hpp
@@ -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.
diff --git a/include/boost/beast/websocket/stream.hpp b/include/boost/beast/websocket/stream.hpp
index 67ee357e..a9d79d2d 100644
--- a/include/boost/beast/websocket/stream.hpp
+++ b/include/boost/beast/websocket/stream.hpp
@@ -1634,7 +1634,7 @@ public:
This function is used to send a
pong frame,
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
pong frame,
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
pong frame,
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.