aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bors[bot] <26634292+bors[bot]@users.noreply.github.com> 2021-07-20 14:14:47 +0000
committerGravatar GitHub <noreply@github.com> 2021-07-20 14:14:47 +0000
commit29aef36f6726e1fa87a5f5dcaa4f2745cbcdebcd (patch)
tree43b54fcef0df94c0ff20fc88c310aee71095d89a
parent78f556f9427e94e830b6ff6269bb1ac80010c5e6 (diff)
parentc4c964de7bdb9f5cc313414d27803e71a057ac64 (diff)
downloadrtic-29aef36f6726e1fa87a5f5dcaa4f2745cbcdebcd.tar.gz
rtic-29aef36f6726e1fa87a5f5dcaa4f2745cbcdebcd.tar.zst
rtic-29aef36f6726e1fa87a5f5dcaa4f2745cbcdebcd.zip
Merge #497
497: Change misleading documentation left over by PR #464 r=AfoHT a=Cat-Ion Co-authored-by: Valentin Ochs <a@0au.de>
-rw-r--r--book/en/src/internals/tasks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/internals/tasks.md b/book/en/src/internals/tasks.md
index 0407176d..db7afad5 100644
--- a/book/en/src/internals/tasks.md
+++ b/book/en/src/internals/tasks.md
@@ -151,7 +151,7 @@ mod app {
const RQ1_CEILING: u8 = 2;
// used to track how many more `bar` messages can be enqueued
- // `U2` is the capacity of the `bar` task; a max of two instances can be queued
+ // `3-1=2` represents the capacity of this queue
// this queue is filled by the framework before `init` runs
static mut bar_FQ: Queue<(), 3> = Queue::new();