From 4d4c595185084c5c68d01b524a933d670f9f698d Mon Sep 17 00:00:00 2001 From: Gregory Holder <30503300+blueted2@users.noreply.github.com> Date: Fri, 16 Sep 2022 14:52:13 +0200 Subject: [PATCH] core/mutex: fix typo in docs --- 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 edde8f87f5..0633f5777f 100644 --- a/core/include/mutex.h +++ b/core/include/mutex.h @@ -67,7 +67,7 @@ * blocking. * 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`. + * by setting the `thread_t::rq_entry.next` of the running thread to `NULL`. * The running thread blocks as described below. * 3. Otherwise, the current thread is inserted into the list of waiting * threads sorted by thread priority. The running thread blocks as described