Skip to content

Commit abb9f38

Browse files
committed
that sounds better
1 parent 066a5c3 commit abb9f38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtic-sync/src/channel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type WaitQueue = DoublyLinkedList<WaitQueueData>;
2828
/// This channel uses critical sections, however there are extremely small and all `memcpy`
2929
/// operations of `T` are done without critical sections.
3030
///
31-
/// Right now, the size of the channel slots is limited to 255 elements.
31+
/// Right now, the size of the queue `N` is limited to 255 elements.
3232
pub struct Channel<T, const N: usize> {
3333
// Here are all indexes that are not used in `slots` and ready to be allocated.
3434
freeq: UnsafeCell<Deque<u8, N>>,

0 commit comments

Comments
 (0)