/// the NEED_MORE_DATA_EVT is set as next event to signal the need for
/// calling @ref JSONFeed::postBuffer.
///
- /// @throw HttpRequestParserError If current event is already set to
+ /// @throw JSONFeedError If current event is already set to
/// NEED_MORE_DATA_EVT or MORE_DATA_PROVIDED_EVT. In the former case, it
/// indicates that the caller failed to provide new data using
/// @ref JSONFeed::postBuffer. The latter case is highly unlikely
/// Even though the @ref ClientConnection is asynchronous in nature, it
/// can also be used in cases requiring synchronous communication. As it
/// has been already mentioned, the servers in Kea 1.2 do not support
-/// multiple concurrent connections. The following pseudo code demonstrate
+/// multiple concurrent connections. The following pseudo code demonstrates
/// how to perform synchronous transaction using this class.
///
/// @code
/// @param socket_path Path to the socket description that the server
/// is bound to.
/// @param command Control command to be sent to the server.
- /// @param handler Pointer to the user suppiled callback function which
+ /// @param handler Pointer to the user supplied callback function which
/// should be invoked when transaction completes or when an error has
/// occurred during the transaction.
/// @param timeout Connection timeout in milliseconds.
/// @brief Test timeout in ms.
const long TEST_TIMEOUT = 10000;
-// Test fixture class for @ref ClientConnection.
+/// Test fixture class for @ref ClientConnection.
class ClientConnectionTest : public ::testing::Test {
public: