summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/cc/json_feed.h2
-rw-r--r--src/lib/config/client_connection.h4
-rw-r--r--src/lib/config/tests/client_connection_unittests.cc2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/cc/json_feed.h b/src/lib/cc/json_feed.h
index dce74f57c6..468d9f86df 100644
--- a/src/lib/cc/json_feed.h
+++ b/src/lib/cc/json_feed.h
@@ -202,7 +202,7 @@ private:
/// 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
diff --git a/src/lib/config/client_connection.h b/src/lib/config/client_connection.h
index 0f179c8ea6..f1ac92bfbe 100644
--- a/src/lib/config/client_connection.h
+++ b/src/lib/config/client_connection.h
@@ -43,7 +43,7 @@ class ClientConnectionImpl;
/// 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
@@ -134,7 +134,7 @@ public:
/// @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.
diff --git a/src/lib/config/tests/client_connection_unittests.cc b/src/lib/config/tests/client_connection_unittests.cc
index a87e01977e..471d7c062d 100644
--- a/src/lib/config/tests/client_connection_unittests.cc
+++ b/src/lib/config/tests/client_connection_unittests.cc
@@ -26,7 +26,7 @@ const std::string TEST_SOCKET = "test-socket";
/// @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: