Skip to content

Commit

Permalink
Apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
yanorei32 committed Jan 24, 2024
1 parent 7f5060e commit 6b5ea0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/duplicator/queue/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
mod queue;

Check warning on line 1 in src/duplicator/queue/mod.rs

View workflow job for this annotation

GitHub Actions / clippy

module has the same name as its containing module

warning: module has the same name as its containing module --> src/duplicator/queue/mod.rs:1:1 | 1 | mod queue; | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_inception
mod two_level_queue;

pub use two_level_queue::{two_level_queue, TwoLevelQueueSender, TwoLevelQueueReceiver, Priorized, Priority};
pub use two_level_queue::{
two_level_queue, Priority, Priorized, TwoLevelQueueReceiver, TwoLevelQueueSender,
};

0 comments on commit 6b5ea0c

Please sign in to comment.