From 8eec0be8d1caa377770039307eefd45ba4cc78a7 Mon Sep 17 00:00:00 2001 From: Vladimir Gamalian Date: Tue, 10 May 2016 19:56:25 +0700 Subject: [PATCH] Fix typo --- Util/include/Poco/Util/Timer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Util/include/Poco/Util/Timer.h b/Util/include/Poco/Util/Timer.h index c86a96c05..207d26b75 100644 --- a/Util/include/Poco/Util/Timer.h +++ b/Util/include/Poco/Util/Timer.h @@ -40,7 +40,7 @@ class Util_API Timer: protected Poco::Runnable /// sequentially. Therefore, tasks should complete their work as quickly /// as possible, otherwise subsequent tasks may be delayed. /// - /// Timer is save for multithreaded use - multiple threads can schedule + /// Timer is safe for multithreaded use - multiple threads can schedule /// new tasks simultaneously. /// /// Acknowledgement: The interface of this class has been inspired by