Skip to content

Commit d493ac8

Browse files
committed
fix import order
1 parent a214189 commit d493ac8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/thread/scoped.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use crate::marker::PhantomData;
33
use crate::panic::{AssertUnwindSafe, catch_unwind, resume_unwind};
44
use crate::sync::Arc;
55
use crate::sync::atomic::{AtomicBool, AtomicUsize, Ordering};
6-
use crate::{fmt, io};
76
use crate::sys_common::{AsInner, IntoInner};
7+
use crate::{fmt, io};
88

99
/// A scope to spawn scoped threads in.
1010
///

0 commit comments

Comments
 (0)