]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1732] More formatting nits.
authorThomas Markwalder <tmark@isc.org>
Thu, 8 Apr 2021 12:52:34 +0000 (08:52 -0400)
committerThomas Markwalder <tmark@isc.org>
Thu, 8 Apr 2021 12:59:48 +0000 (08:59 -0400)
src/lib/http/client.h
src/lib/http/tests/mt_client_unittests.cc
src/lib/http/url.h

index 900bc53ba528c4633707a95a11d37781b5d45e97..4fd3c319e9f4cc6432e0288a117eb10321701e7f 100644 (file)
@@ -272,12 +272,12 @@ public:
 
     /// @brief Fetches the maximum size of the thread pool.
     ///
-    /// @return maximum size of the thread pool.
+    /// @return the maximum size of the thread pool.
     uint16_t getThreadPoolSize() const;
 
     /// @brief Fetches the number of threads in the pool.
     ///
-    /// @return number of running threads.
+    /// @return the number of running threads.
     uint16_t getThreadCount() const;
 
 private:
index ed2e0cc53045b2ee810c8d4b8cc59950513267ae..cab50bd7643928ad7adb24bef93030cbfd75bddd 100644 (file)
@@ -466,7 +466,7 @@ public:
         std::string main_thread_id = ss.str();
 
         // Iterate over the client request/response pairs.
-        for (auto const& clientRR : clientRRs_ ) {
+        for (auto const& clientRR : clientRRs_) {
             // Make sure it's whole.
             ASSERT_FALSE(clientRR->thread_id_.empty());
             ASSERT_TRUE(clientRR->request_);
index 0b82cf338c2c47f8d1666823127156e92fab4a74..be48a7cad7af690de8e73770b6b7bdf2fb05cf4f 100644 (file)
@@ -77,13 +77,18 @@ public:
 
     /// @brief Returns path.
     ///
+    /// #return URL path
     /// @throw InvalidOperation if URL is invalid.
     std::string getPath() const;
 
     /// @brief Returns textual representation of the URL.
+    ///
+    /// @return Text version of the URL.
     std::string toText() const;
 
-    /// @brief Returns the raw, unparsed url string.
+    /// @brief Returns the raw, unparsed URL string.
+    ///
+    /// @return Unparsed URL string.
     const std::string& rawUrl() const {
         return (url_);
     }