From 7eb49cd9adf6b5032b1303c6efb209b2d5873df6 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Wed, 29 Apr 2020 08:40:15 +0000 Subject: [PATCH] Documentation fixes. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@13614 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/rt/src/chthreads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/rt/src/chthreads.c b/os/rt/src/chthreads.c index d7e865337..caa846b14 100644 --- a/os/rt/src/chthreads.c +++ b/os/rt/src/chthreads.c @@ -303,7 +303,7 @@ thread_t *chThdCreate(const thread_descriptor_t *tdp) { /** * @brief Creates a new thread into a static memory area. * @post The created thread has a reference counter set to one, it is - * caller responsibility to call @p chThdRelease() or @p chthdWait() + * caller responsibility to call @p chThdRelease() or @p chThdWait() * in order to release the reference. The thread persists in the * registry until its reference counter reaches zero. * @note A thread can terminate by calling @p chThdExit() or by simply