diff --git a/src/flow/net_flow/detail/socket_buffer.hpp b/src/flow/net_flow/detail/socket_buffer.hpp index 5eaa342ab..ba8500f37 100644 --- a/src/flow/net_flow/detail/socket_buffer.hpp +++ b/src/flow/net_flow/detail/socket_buffer.hpp @@ -150,7 +150,7 @@ class Socket_buffer : * Type that models the boost.asio `ConstBufferSequence` concept (see Boost docs). * Basically, it's any container with elements convertible to `boost::asio::const_buffer`; * and bidirectional iterator support. Examples: `vector`, `list`. - * Why allow `const_buffer` instead of, say, Sequence of bytes? Same reason as boost.asio's + * Why allow `const_buffer` instead of, say, `Sequence` of bytes? Same reason as boost.asio's * send functions: it allows a great amount of flexibility without sacrificing performance, * since `boost::asio::buffer()` function can adapt lots of different objects (arrays, * vectors, strings, and more of bytes, integers, and more). @@ -199,7 +199,7 @@ class Socket_buffer : * Type that models the boost.asio `MutableBufferSequence` concept (see Boost docs). * Basically, it's any container with elements convertible to `boost::asio::mutable_buffer`; * and bidirectional iterator support. Examples: `vector`, - * l`ist.` Why allow `mutable_buffer` instead of, say, Sequence of bytes? + * `list.` Why allow `mutable_buffer` instead of, say, `Sequence` of bytes? * Same reason as boost.asio's receive functions: it allows a great amount of flexibility * without sacrificing performance, since `boost::asio::buffer()` function can adapt lots of * different objects (arrays, `vector`s, `string`s, and more of bytes, integers, and more).