Skip to content

Commit 03c64bf

Browse files
committed
spaces between braces really ruin readability
1 parent 3cc4ef9 commit 03c64bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libstd/io/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -952,10 +952,10 @@ pub trait Read {
952952
pub struct IoSliceMut<'a>(sys::io::IoSliceMut<'a>);
953953

954954
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
955-
unsafe impl<'a> Send for IoSliceMut<'a> { }
955+
unsafe impl<'a> Send for IoSliceMut<'a> {}
956956

957957
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
958-
unsafe impl<'a> Sync for IoSliceMut<'a> { }
958+
unsafe impl<'a> Sync for IoSliceMut<'a> {}
959959

960960
#[stable(feature = "iovec", since = "1.36.0")]
961961
impl<'a> fmt::Debug for IoSliceMut<'a> {
@@ -1061,10 +1061,10 @@ impl<'a> DerefMut for IoSliceMut<'a> {
10611061
pub struct IoSlice<'a>(sys::io::IoSlice<'a>);
10621062

10631063
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
1064-
unsafe impl<'a> Send for IoSlice<'a> { }
1064+
unsafe impl<'a> Send for IoSlice<'a> {}
10651065

10661066
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
1067-
unsafe impl<'a> Sync for IoSlice<'a> { }
1067+
unsafe impl<'a> Sync for IoSlice<'a> {}
10681068

10691069
#[stable(feature = "iovec", since = "1.36.0")]
10701070
impl<'a> fmt::Debug for IoSlice<'a> {

0 commit comments

Comments
 (0)