Skip to content

Commit

Permalink
Fix method visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jauhien committed Aug 2, 2024
1 parent a163e5a commit 5d61abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asynchronix/examples/external_input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl Listener {
}

/// Periodically scheduled function that processes external events.
pub async fn process(&mut self) {
async fn process(&mut self) {
loop {
if let Ok(message) = self.rx.try_recv() {
self.message.send(message).await;
Expand Down

0 comments on commit 5d61abd

Please sign in to comment.