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
*