Browse Source

[5189] Minor corrections after review.

Tomek Mrugalski 8 years ago
parent
commit
c448d80dfb

+ 1 - 1
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

+ 2 - 2
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.

+ 1 - 1
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: