aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chstreams.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include/chstreams.h')
-rw-r--r--os/kernel/include/chstreams.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/os/kernel/include/chstreams.h b/os/kernel/include/chstreams.h
index 4681ac331..436697a9a 100644
--- a/os/kernel/include/chstreams.h
+++ b/os/kernel/include/chstreams.h
@@ -41,7 +41,7 @@
/**
* @brief BaseSequentialStream specific methods.
*/
-#define _base_sequental_stream_methods \
+#define _base_sequential_stream_methods \
/* Stream write buffer method.*/ \
size_t (*write)(void *instance, const uint8_t *bp, size_t n); \
/* Stream read buffer method.*/ \
@@ -52,13 +52,13 @@
* @note It is empty because @p BaseSequentialStream is only an interface
* without implementation.
*/
-#define _base_sequental_stream_data
+#define _base_sequential_stream_data
/**
* @brief @p BaseSequentialStream virtual methods table.
*/
struct BaseSequentialStreamVMT {
- _base_sequental_stream_methods
+ _base_sequential_stream_methods
};
/**
@@ -69,7 +69,7 @@ struct BaseSequentialStreamVMT {
typedef struct {
/** @brief Virtual Methods Table.*/
const struct BaseSequentialStreamVMT *vmt;
- _base_sequental_stream_data
+ _base_sequential_stream_data
} BaseSequentialStream;
/**