From 2e190d21ed8ecfd6c0e322830d229a2b4545a6a9 Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Tue, 5 Aug 2014 17:08:53 +0200 Subject: [PATCH] doc: fix spelling in core/include --- core/include/bitarithm.h | 2 +- core/include/io.h | 4 ++-- core/include/kernel.h | 2 +- core/include/msg.h | 4 ++-- core/include/mutex.h | 4 ++-- core/include/sched.h | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/core/include/bitarithm.h b/core/include/bitarithm.h index 0a5df4e50..277344640 100644 --- a/core/include/bitarithm.h +++ b/core/include/bitarithm.h @@ -22,7 +22,7 @@ /** * @def SETBIT - * @brief Sets a bitbitmask for a bitfield + * @brief Sets a bitmask for a bitfield * * @param[in] val The bitfield * @param[in] bit Specifies the bits to be set diff --git a/core/include/io.h b/core/include/io.h index d85f93a1f..01224f8dd 100644 --- a/core/include/io.h +++ b/core/include/io.h @@ -24,8 +24,8 @@ /** * @brief Firmware putstring implementation * - * @param[in] data charachters to be written - * @param[in] count number of charachters to be written + * @param[in] data characters to be written + * @param[in] count number of characters to be written */ int fw_puts(char *data, int count); diff --git a/core/include/kernel.h b/core/include/kernel.h index 2745a05df..018549bbf 100644 --- a/core/include/kernel.h +++ b/core/include/kernel.h @@ -117,7 +117,7 @@ extern volatile int lpm_prevent_sleep; /** - * @brief Variable used to store system configurationi + * @brief Variable used to store system configuration * * @detail This contains e.g. the node ID, name, default channel and so on */ diff --git a/core/include/msg.h b/core/include/msg.h index 657f1ec95..bea2cf66f 100644 --- a/core/include/msg.h +++ b/core/include/msg.h @@ -96,7 +96,7 @@ int msg_send_to_self(msg_t *m); /** * @brief Send message from interrupt. * - * Will be automatically chosen instead of ``msg_sennd()`` if called from an + * Will be automatically chosen instead of ``msg_send()`` if called from an * interrupt/ISR. * * @param[in] m Pointer to preallocated ``msg_t`` structure, must @@ -172,7 +172,7 @@ int msg_reply(msg_t *m, msg_t *reply); * * @param[in] array Pointer to preallocated array of ``msg_t`` structures, must * not be NULL. - * @param[in] num Number of ``msg_t`` structurs in array. + * @param[in] num Number of ``msg_t`` structures in array. * **MUST BE POWER OF TWO!** * * @return 0, if successful diff --git a/core/include/mutex.h b/core/include/mutex.h index 7d4ff447a..db4c1649a 100644 --- a/core/include/mutex.h +++ b/core/include/mutex.h @@ -44,13 +44,13 @@ typedef struct mutex_t { /** * @brief Static initializer for mutex_t. - * @details This initializer is preferrable to mutex_init(). + * @details This initializer is preferable to mutex_init(). */ #define MUTEX_INIT { 0, QUEUE_INIT } /** * @brief Initializes a mutex object. - * @details For intialization of variables use MUTEX_INIT instead. + * @details For initialization of variables use MUTEX_INIT instead. * Only use the function call for dynamically allocated mutexes. * @param[out] mutex pre-allocated mutex structure, must not be NULL. */ diff --git a/core/include/sched.h b/core/include/sched.h index 56315a54c..041fd505e 100644 --- a/core/include/sched.h +++ b/core/include/sched.h @@ -72,7 +72,7 @@ * @{ * * @file sched.h - * @brief Scheduler API definion + * @brief Scheduler API definition * * @author Kaspar Schleiser */