Skip to content

Commit 95e333c

Browse files
committed
fmt
1 parent 702c9af commit 95e333c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ impl<'a, T: ?Sized> RwLockReadGuard<'a, T> {
929929
// SAFETY: We have ownership of the read guard, so it must be in read mode already
930930
match unsafe { read_lock.try_upgrade() } {
931931
true => RwLockWriteGuard::new(read_lock).unwrap_or_else(PoisonError::into_inner),
932-
false => RwLockReadGuard::new(read_lock).unwrap_or_else(PoisonError::into_inner)
932+
false => RwLockReadGuard::new(read_lock).unwrap_or_else(PoisonError::into_inner),
933933
}
934934
}
935935
}

0 commit comments

Comments
 (0)