From 2127b94a7bb22b880c919f1bb1c14dab4bae6660 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 23 Oct 2019 21:16:22 +0200 Subject: [PATCH] sys/cpp11-compat: fix typos --- sys/cpp11-compat/include/riot/mutex.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/cpp11-compat/include/riot/mutex.hpp b/sys/cpp11-compat/include/riot/mutex.hpp index 39cecad8ea..318f5466fe 100644 --- a/sys/cpp11-compat/include/riot/mutex.hpp +++ b/sys/cpp11-compat/include/riot/mutex.hpp @@ -33,7 +33,7 @@ namespace riot { /** - * @brief C++11 complient implementation of mutex, uses the time point + * @brief C++11 compliant implementation of mutex, uses the time point * implemented in our chrono replacement instead of the specified * one * @see @@ -104,7 +104,7 @@ constexpr try_to_lock_t try_to_lock = try_to_lock_t(); constexpr adopt_lock_t adopt_lock = adopt_lock_t(); /** - * @brief C++11 complient implementation of unique lock + * @brief C++11 compliant implementation of unique lock * @see * std::lock_guard * @@ -133,7 +133,7 @@ private: }; /** - * @brief C++11 complient implementation of unique lock + * @brief C++11 compliant implementation of unique lock * @see * std::unique_lock *