From 323fa3b5ac9f9678e4a4922370e1184d4e506581 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 29 Dec 2020 11:48:48 +0100 Subject: [PATCH] core/mutex: fix typo in documentation --- core/include/mutex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/include/mutex.h b/core/include/mutex.h index 4d9acd1e34..62d13a3ad5 100644 --- a/core/include/mutex.h +++ b/core/include/mutex.h @@ -59,7 +59,7 @@ * 1. If the mutex was unlocked (value of `NULL`), its value is changed to * `MUTEX_LOCKED` and the call to `mutex_lock()` returns right away without * blocking. - * 2. If the mutex as a vale of `MUTEX_LOCKED`, it will be changed to point to + * 2. If the mutex has a value of `MUTEX_LOCKED`, it will be changed to point to * the `thread_t` of the running thread. The single item list is terminated * be setting the `thread_t::rq_entry.next` of the running thread to `NULL`. * The running thread blocks as described below.