aboutsummaryrefslogtreecommitdiffstats
path: root/os/common
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-03-11 10:00:58 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-03-11 10:00:58 +0000
commitd97542b7b824570b0a372cb848ae02bf01d60039 (patch)
treed37c9e20112c3a177c0745693664ec0db7a475e9 /os/common
parent3d9f9a7d7a6ae63a8263e3f09b0789e29cc3f5b8 (diff)
downloadChibiOS-d97542b7b824570b0a372cb848ae02bf01d60039.tar.gz
ChibiOS-d97542b7b824570b0a372cb848ae02bf01d60039.tar.bz2
ChibiOS-d97542b7b824570b0a372cb848ae02bf01d60039.zip
Documentation related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11694 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/common')
-rw-r--r--os/common/oslib/src/chmboxes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/common/oslib/src/chmboxes.c b/os/common/oslib/src/chmboxes.c
index af10c6d7e..b0ca43877 100644
--- a/os/common/oslib/src/chmboxes.c
+++ b/os/common/oslib/src/chmboxes.c
@@ -103,7 +103,7 @@ void chMBObjectInit(mailbox_t *mbp, msg_t *buf, size_t n) {
* @details All the waiting threads are resumed with status @p MSG_RESET and
* the queued messages are lost.
* @post The mailbox is in reset state, all operations will fail and
- * return @p MSG reset until the mailbox is enabled again using
+ * return @p MSG_RESET until the mailbox is enabled again using
* @p chMBResumeX().
*
* @param[in] mbp the pointer to an initialized @p mailbox_t object
@@ -123,7 +123,7 @@ void chMBReset(mailbox_t *mbp) {
* @details All the waiting threads are resumed with status @p MSG_RESET and
* the queued messages are lost.
* @post The mailbox is in reset state, all operations will fail and
- * return @p MSG reset until the mailbox is enabled again using
+ * return @p MSG_RESET until the mailbox is enabled again using
* @p chMBResumeX().
*
* @param[in] mbp the pointer to an initialized @p mailbox_t object