/// @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
/// @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() { }
response_creator_,
HttpAcceptorCallback(),
1000));
- // The pool should be initally empty.
+ // The pool should be initially empty.
TestHttpConnectionPool pool;
ASSERT_TRUE(pool.connections_.empty());