diff --git a/libcortex_a9/src/sync_channel.rs b/libcortex_a9/src/sync_channel.rs index 1cf5a06..6a8531f 100644 --- a/libcortex_a9/src/sync_channel.rs +++ b/libcortex_a9/src/sync_channel.rs @@ -68,7 +68,7 @@ impl Sender { } } - /// Non-blocking send, handing you back ownership of the ocntent on **failure** + /// Non-blocking send, handing you back ownership of the content on **failure** pub fn try_send>>(&mut self, content: B) -> Option> { let ptr = Box::into_raw(content.into()); let entry = &self.channel[self.pos];