Browse Source

[5099] spelling

Francis Dupont 8 years ago
parent
commit
cbc308635d

+ 1 - 1
src/lib/http/connection_pool.h

@@ -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

+ 1 - 1
src/lib/http/response_creator_factory.h

@@ -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() { }
 

+ 1 - 1
src/lib/http/tests/connection_pool_unittests.cc

@@ -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());