correct spelling of the word "receive"

This commit is contained in:
Stefan Gehr
2024-02-03 14:56:31 +01:00
parent 88e7e1ceb9
commit b9d0069671
5 changed files with 8 additions and 8 deletions

View File

@@ -325,7 +325,7 @@ where
///
/// Sent data may be reordered based on their priorty within the channel.
/// For example, in a [`Max`](heapless::binary_heap::Max) [`PriorityChannel`]
/// containing `u32`'s, data sent in the following order `[1, 2, 3]` will be recieved as `[3, 2, 1]`.
/// 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
T: Ord,