aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include/chstreams.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/rt/include/chstreams.h')
-rw-r--r--os/rt/include/chstreams.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/include/chstreams.h b/os/rt/include/chstreams.h
index d57b28bde..1388e8c3e 100644
--- a/os/rt/include/chstreams.h
+++ b/os/rt/include/chstreams.h
@@ -116,7 +116,7 @@ typedef struct {
* @details This function writes a byte value to a channel. If the channel
* is not ready to accept data then the calling thread is suspended.
*
- * @param[in] ip pointer to a @p BaseChannel or derived class
+ * @param[in] ip pointer to a @p BaseSequentialStream or derived class
* @param[in] b the byte value to be written to the channel
*
* @return The operation status.
@@ -132,7 +132,7 @@ typedef struct {
* @details This function reads a byte value from a channel. If the data
* is not available then the calling thread is suspended.
*
- * @param[in] ip pointer to a @p BaseChannel or derived class
+ * @param[in] ip pointer to a @p BaseSequentialStream or derived class
*
* @return A byte value from the queue.
* @retval Q_RESET if an end-of-file condition has been met.