Fix typo in mutex.h (#917)

This commit is contained in:
Tetsuo Kiso 2019-12-15 19:38:54 +09:00 committed by Roman Lebedev
parent 367119482f
commit 0811f1d782
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ typedef std::condition_variable Condition;
// NOTE: Wrappers for std::mutex and std::unique_lock are provided so that
// we can annotate them with thread safety attributes and use the
// -Wthread-safety warning with clang. The standard library types cannot be
// used directly because they do not provided the required annotations.
// used directly because they do not provide the required annotations.
class CAPABILITY("mutex") Mutex {
public:
Mutex() {}