]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5189] Minor corrections after review.
authorTomek Mrugalski <tomasz@isc.org>
Tue, 6 Jun 2017 18:32:41 +0000 (20:32 +0200)
committerTomek Mrugalski <tomasz@isc.org>
Tue, 6 Jun 2017 18:32:41 +0000 (20:32 +0200)
src/lib/cc/json_feed.h
src/lib/config/client_connection.h
src/lib/config/tests/client_connection_unittests.cc

index dce74f57c630a253cb200d3ce526a889b37d920f..468d9f86dfb178577dfe1dc9af63bef059fc833b 100644 (file)
@@ -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
index 0f179c8ea6bb44418b3c739fc19c6e7e9f6a823c..f1ac92bfbeecd0922e4e1deb6a85b1b7c5bbf8e0 100644 (file)
@@ -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.
index a87e01977e5826a8be460decb7022dd9e1c422ef..471d7c062d20f34dd3d91a53f74a71f5b146f208 100644 (file)
@@ -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: