aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include')
-rw-r--r--os/kernel/include/chbsem.h4
-rw-r--r--os/kernel/include/chmboxes.h2
-rw-r--r--os/kernel/include/chsys.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/os/kernel/include/chbsem.h b/os/kernel/include/chbsem.h
index 5726cd350..e60886bcd 100644
--- a/os/kernel/include/chbsem.h
+++ b/os/kernel/include/chbsem.h
@@ -55,7 +55,7 @@
/**
* @extends Semaphore
*
- * @brief Binary semaphore type.
+ * @brief Binary semaphore type.
*/
typedef struct {
Semaphore bs_sem;
@@ -99,7 +99,7 @@ typedef struct {
/**
* @brief Wait operation on the binary semaphore.
*
- * @param[in] bsp pointer to a @p BinarySemaphore structure
+ * @param[in] bsp pointer to a @p BinarySemaphore structure
* @return A message specifying how the invoking thread has been
* released from the semaphore.
* @retval RDY_OK if the binary semaphore has been successfully taken.
diff --git a/os/kernel/include/chmboxes.h b/os/kernel/include/chmboxes.h
index 608fcf91e..ce3f238be 100644
--- a/os/kernel/include/chmboxes.h
+++ b/os/kernel/include/chmboxes.h
@@ -38,7 +38,7 @@
#endif
/**
- * @brief Structure representing a mailbox object.
+ * @brief Structure representing a mailbox object.
*/
typedef struct {
msg_t *mb_buffer; /**< @brief Pointer to the mailbox
diff --git a/os/kernel/include/chsys.h b/os/kernel/include/chsys.h
index 555c59126..944aedc02 100644
--- a/os/kernel/include/chsys.h
+++ b/os/kernel/include/chsys.h
@@ -34,7 +34,7 @@
* it is not strictly required being the idle thread a static
* object.
*
- * @return Pointer to the idle thread,
+ * @return Pointer to the idle thread.
*
* @api
*/