aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel')
-rw-r--r--os/kernel/include/chioch.h4
-rw-r--r--os/kernel/include/chstreams.h10
2 files changed, 7 insertions, 7 deletions
diff --git a/os/kernel/include/chioch.h b/os/kernel/include/chioch.h
index 27e2abbb4..d8e8771f6 100644
--- a/os/kernel/include/chioch.h
+++ b/os/kernel/include/chioch.h
@@ -71,8 +71,8 @@
*
* @brief @p BaseChannel virtual methods table.
*/
-struct BaseChannelVMT { \
- _base_channel_methods \
+struct BaseChannelVMT {
+ _base_channel_methods
};
/**
diff --git a/os/kernel/include/chstreams.h b/os/kernel/include/chstreams.h
index 3911c91ae..f12c662cd 100644
--- a/os/kernel/include/chstreams.h
+++ b/os/kernel/include/chstreams.h
@@ -26,11 +26,11 @@
*
* @addtogroup data_streams
* @details This module define an abstract interface for generic data streams.
- * Note that no code is present, streams are just abstract interfaces
- * like structures, you should look at the systems as to a set of
- * abstract C++ classes (even if written in C). This system has the
- * advantage to make the access to streams independent from the
- * implementation logic.<br>
+ * Note that no code is present, just abstract interfaces-like
+ * structures, you should look at the system as to a set of
+ * abstract C++ classes (even if written in C). This system
+ * has then advantage to make the access to data streams
+ * independent from the implementation logic.<br>
* The stream interface can be used as base class for high level
* object types such as files, sockets, serial ports, pipes etc.
* @{