diff --git a/asio/include/asio/basic_demuxer.hpp b/asio/include/asio/basic_demuxer.hpp index 2973f827..a3727957 100644 --- a/asio/include/asio/basic_demuxer.hpp +++ b/asio/include/asio/basic_demuxer.hpp @@ -30,9 +30,9 @@ namespace asio { /// The basic_demuxer class template provides the core event demultiplexing -/// functionality for both users of the asynchronous I/O objects, such as -/// stream_socket, and to developers of custom asynchronous services. Most -/// applications will simply use the demuxer typedef. +/// functionality for users of the asynchronous I/O objects, such as +/// stream_socket, and also to developers of custom asynchronous services. Most +/// applications will use the demuxer typedef. template class basic_demuxer : private boost::noncopyable diff --git a/asio/include/asio/basic_dgram_socket.hpp b/asio/include/asio/basic_dgram_socket.hpp index 880e8e64..38b949b4 100644 --- a/asio/include/asio/basic_dgram_socket.hpp +++ b/asio/include/asio/basic_dgram_socket.hpp @@ -27,8 +27,8 @@ namespace asio { /// The basic_dgram_socket class template provides asynchronous and blocking -/// datagram-oriented socket functionality. Most applications will simply use -/// the dgram_socket typedef. +/// datagram-oriented socket functionality. Most applications will use the +/// dgram_socket typedef. template class basic_dgram_socket : private boost::noncopyable diff --git a/asio/include/asio/basic_socket_acceptor.hpp b/asio/include/asio/basic_socket_acceptor.hpp index cd16b5f8..6646e869 100644 --- a/asio/include/asio/basic_socket_acceptor.hpp +++ b/asio/include/asio/basic_socket_acceptor.hpp @@ -27,8 +27,7 @@ namespace asio { /// The basic_socket_acceptor class template is used for accepting new socket -/// connections. Most applications would simply use the socket_acceptor -/// typedef. +/// connections. Most applications would use the socket_acceptor typedef. template class basic_socket_acceptor : private boost::noncopyable diff --git a/asio/include/asio/basic_socket_connector.hpp b/asio/include/asio/basic_socket_connector.hpp index 780729e4..1228775f 100644 --- a/asio/include/asio/basic_socket_connector.hpp +++ b/asio/include/asio/basic_socket_connector.hpp @@ -27,8 +27,7 @@ namespace asio { /// The basic_socket_connector class template is used to connect a socket to a -/// remote endpoint. Most applications will simply use the socket_connector -/// typedef. +/// remote endpoint. Most applications will use the socket_connector typedef. template class basic_socket_connector : private boost::noncopyable diff --git a/asio/include/asio/basic_stream_socket.hpp b/asio/include/asio/basic_stream_socket.hpp index 1e546f68..ddfefcc1 100644 --- a/asio/include/asio/basic_stream_socket.hpp +++ b/asio/include/asio/basic_stream_socket.hpp @@ -27,7 +27,7 @@ namespace asio { /// The basic_stream_socket class template provides asynchronous and blocking -/// stream-oriented socket functionality. Most applications will simply use the +/// stream-oriented socket functionality. Most applications will use the /// stream_socket typedef. template class basic_stream_socket diff --git a/asio/include/asio/basic_timer.hpp b/asio/include/asio/basic_timer.hpp index caf0b2a9..2c7154af 100644 --- a/asio/include/asio/basic_timer.hpp +++ b/asio/include/asio/basic_timer.hpp @@ -28,7 +28,7 @@ namespace asio { /// The basic_timer class template provides asynchronous timer functionality. -/// Most applications will simply use the timer typedef. +/// Most applications will use the timer typedef. template class basic_timer : public timer_base, diff --git a/asio/include/asio/null_completion_context.hpp b/asio/include/asio/null_completion_context.hpp index bd47c539..de3c84b0 100644 --- a/asio/include/asio/null_completion_context.hpp +++ b/asio/include/asio/null_completion_context.hpp @@ -39,7 +39,7 @@ namespace detail /// The completion_context class is the abstract base class for all completion /// context implementations. A completion context is used to determine when /// an upcall can be made to the completion handler of an asynchronous -/// operations. +/// operation. class null_completion_context : private boost::noncopyable { @@ -65,7 +65,7 @@ public: * to a completion handler. This function always returns a result * immediately. * - * If the right to make an upcall was successfully acquired, then the a later + * If the right to make an upcall was successfully acquired, then a later * call must be made to the release() function to relinquish that right. * * @return Returns true if the right to make an upcall was granted. @@ -77,11 +77,8 @@ public: /// Acquire the right to make an upcall. /** - - * This function is called to obtain - * the right to make an upcall to a completion handler. The - * handler will be - * called when the right is granted. + * This function is called to obtain the right to make an upcall to a + * completion handler. The handler will be called when the right is granted. * * @param handler The function object to be called when the right is granted. */