Skip to content

Commit 156ff07

Browse files
committed
Cargo fmt
1 parent 3bd66b9 commit 156ff07

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/scheme.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ impl NetworkScheme {
4444
/// The only user facing function. Starts a network process and runs the main loop. Blocks, so recommended to run this in its own thread.
4545
pub fn main_loop(mut self) {
4646
// input and output ports for the repl thread
47-
let repl_channels: Arc<Mutex<Vec<ReplInputOutputPair>>> =
48-
Arc::new(Mutex::new(Vec::new()));
47+
let repl_channels: Arc<Mutex<Vec<ReplInputOutputPair>>> = Arc::new(Mutex::new(Vec::new()));
4948

5049
{
5150
let repl_channels = Arc::clone(&repl_channels);

0 commit comments

Comments
 (0)