Skip to content

Commit a23b468

Browse files
committed
mend
1 parent 42dda36 commit a23b468

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: library/std/src/sync/poison/rwlock.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ use crate::fmt;
33
use crate::marker::PhantomData;
44
use crate::mem::{self, ManuallyDrop, forget};
55
use crate::ops::{Deref, DerefMut};
6-
use crate::ptr::{NonNull};
6+
use crate::ptr::NonNull;
77
use crate::sync::{LockResult, PoisonError, TryLockError, TryLockResult, poison};
88
use crate::sys::sync as sys;
99

10-
11-
1210
/// A reader-writer lock
1311
///
1412
/// This type of lock allows a number of readers or at most one writer at any

0 commit comments

Comments
 (0)