Update embassy-sync/src/priority_channel.rs

Co-authored-by: James Munns <james@onevariable.com>
This commit is contained in:
Robin Mueller 2025-07-09 14:31:04 +02:00 committed by GitHub
parent 9892963da9
commit 554fbef571
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -473,7 +473,7 @@ where
/// received from the channel.
///
/// Sent data may be reordered based on their priority within the channel.
/// For example, in a [Max][PriorityChannel]
/// For example, in a [`Max`] [`PriorityChannel`]
/// containing `u32`'s, data sent in the following order `[1, 2, 3]` will be received as `[3, 2, 1]`.
pub struct PriorityChannel<M, T, K, const N: usize>
where