diff --git a/example/cpp03/services/logger_service.hpp b/example/cpp03/services/logger_service.hpp index 8934291f..f9411736 100644 --- a/example/cpp03/services/logger_service.hpp +++ b/example/cpp03/services/logger_service.hpp @@ -103,7 +103,7 @@ class logger_service 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. work_io_service_.post(boost::bind( &logger_service::log_impl, this, os.str())); }