aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/hal_buffers.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/src/hal_buffers.c')
-rw-r--r--os/hal/src/hal_buffers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/src/hal_buffers.c b/os/hal/src/hal_buffers.c
index f9a62c210..f7b2c9f4a 100644
--- a/os/hal/src/hal_buffers.c
+++ b/os/hal/src/hal_buffers.c
@@ -28,7 +28,7 @@
* - <b>Input queue</b>, unidirectional queue where the writer is the
* ISR side and the reader is the thread side.
* - <b>Output queue</b>, unidirectional queue where the writer is the
- * ISR side and the reader is the thread side.
+ * thread side and the reader is the ISR side.
* - <b>Full duplex queue</b>, bidirectional queue. Full duplex queues
* are implemented by pairing an input queue and an output queue
* together.