]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5099] spelling
authorFrancis Dupont <fdupont@isc.org>
Tue, 31 Jan 2017 18:25:38 +0000 (19:25 +0100)
committerFrancis Dupont <fdupont@isc.org>
Tue, 31 Jan 2017 18:25:38 +0000 (19:25 +0100)
src/lib/http/connection_pool.h
src/lib/http/response_creator_factory.h
src/lib/http/tests/connection_pool_unittests.cc

index 8705651a4ac163359233166b56fbb7e0f9f36da4..10f3f7990b45a7b67f65983f67a27ebcb75a4a5a 100644 (file)
@@ -15,7 +15,7 @@ namespace http {
 
 /// @brief Pool of active HTTP connections.
 ///
-/// The HTTP server is designed to handle many connections simultanously.
+/// The HTTP server is designed to handle many connections simultaneously.
 /// The communication between the client and the server may take long time
 /// and the server must be able to react on other events while the communication
 /// with the clients is in progress. Thus, the server must track active
index 4a36afeb8b63e99f5f9917f95a32ce72468c1622..3827ebda6525907fe607aa901bfeb0e7f5bbf540 100644 (file)
@@ -37,7 +37,7 @@ public:
 
     /// @brief Virtual destructor.
     ///
-    /// The implementation doesn't need to declare virtual destrtuctor because
+    /// The implementation doesn't need to declare virtual destructor because
     /// it is already implemented here.
     virtual ~HttpResponseCreatorFactory() { }
 
index 19012371173601541f5cf2241a231bbb252b03c8..f68a64cb620309f382743f8843c45d72433c956f 100644 (file)
@@ -113,7 +113,7 @@ TEST_F(HttpConnectionPoolTest, startStop) {
                                                response_creator_,
                                                HttpAcceptorCallback(),
                                                1000));
-    // The pool should be initally empty.
+    // The pool should be initially empty.
     TestHttpConnectionPool pool;
     ASSERT_TRUE(pool.connections_.empty());