diff --git a/asio/src/examples/cpp03/services/logger_service.hpp b/asio/src/examples/cpp03/services/logger_service.hpp index ab3c9b03..47987797 100644 --- a/asio/src/examples/cpp03/services/logger_service.hpp +++ b/asio/src/examples/cpp03/services/logger_service.hpp @@ -102,7 +102,7 @@ public: std::ostringstream os; os << impl->identifier << ": " << message; - // Pass the work of opening the file to the background thread. + // Pass the work of writing to the file to the background thread. asio::post(work_io_context_, boost::bind( &logger_service::log_impl, this, os.str())); }