@@ -170,7 +170,7 @@ req.push("INCR", "key");
170170req.push("QUIT");
171171```
172172
173- and its response also has three comamnds and can be read in the
173+ and its response also has three commands and can be read in the
174174following response object
175175
176176``` cpp
@@ -447,7 +447,7 @@ main motivations for choosing an echo server are
447447
448448 * Simple to implement and does not require expertise level in most languages.
449449 * I/O bound: Echo servers have very low CPU consumption in general
450- and therefore are excelent to measure how a program handles concurrent requests.
450+ and therefore are excellent to measure how a program handles concurrent requests.
451451 * It simulates very well a typical backend in regard to concurrency.
452452
453453I also imposed some constraints on the implementations
@@ -510,7 +510,7 @@ in the graph, the reasons are
510510 I don't know for sure why it is so slow, I suppose it has
511511 something to do with its lack of automatic
512512 [ pipelining] ( https://redis.io/docs/manual/pipelining/ ) support.
513- In fact, the more TCP connections I lauch the worse its
513+ In fact, the more TCP connections I launch the worse its
514514 performance gets.
515515
516516 * Libuv: I left it out because it would require me writing to much
@@ -721,11 +721,11 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
721721 makes it simpler to use the ` requirepass ` configuration in Redis.
722722
723723* (Issue [ 189] ( https://github.com/boostorg/redis/issues/189 ) ).
724- Fixes narrowing convertion by using ` std::size_t ` instead of
724+ Fixes narrowing conversion by using ` std::size_t ` instead of
725725 ` std::uint64_t ` for the sizes of bulks and aggregates. The code
726726 relies now on ` std::from_chars ` returning an error if a value
727727 greater than 32 is received on platforms on which the size
728- of` std::size_t ` is 32.
728+ of ` std::size_t ` is 32.
729729
730730
731731### Boost 1.84 (First release in Boost)
@@ -797,7 +797,7 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
797797 would wait for a response to arrive before sending the next one. Now requests
798798 are continuously coalesced and written to the socket. ` request::coalesce `
799799 became unnecessary and was removed. I could measure significative performance
800- gains with theses changes.
800+ gains with these changes.
801801
802802* Improves serialization examples using Boost.Describe to serialize to JSON and protobuf. See
803803 cpp20_json.cpp and cpp20_protobuf.cpp for more details.
@@ -1004,7 +1004,7 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
10041004* Fixes a bug in the ` connection::async_run(host, port) ` overload
10051005 that was causing crashes on reconnection.
10061006
1007- * Fixes the executor usage in the connection class. Before theses
1007+ * Fixes the executor usage in the connection class. Before these
10081008 changes it was imposing ` any_io_executor ` on users.
10091009
10101010* ` connection::async_receiver_event ` is not cancelled anymore when
0 commit comments