Skip to content

Commit 391f800

Browse files
committed
More formatting
1 parent 0b6e6e3 commit 391f800

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/sync/rwlock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ impl<'rwlock, T: ?Sized> RwLockReadGuard<'rwlock, T> {
513513
unsafe fn new(lock: &'rwlock RwLock<T>) -> LockResult<RwLockReadGuard<'rwlock, T>> {
514514
poison::map_result(lock.poison.borrow(), |()| RwLockReadGuard {
515515
inner_lock: &lock.inner,
516-
data: &*lock.data.get()
516+
data: &*lock.data.get(),
517517
})
518518
}
519519
}

0 commit comments

Comments
 (0)