style: Rustfmt recent changes.

This commit is contained in:
Emilio Cobos Álvarez 2019-06-02 23:09:42 -04:00
parent f7240751f5
commit 665db79274
8 changed files with 46 additions and 26 deletions

View file

@ -75,7 +75,9 @@ impl SharedRwLock {
#[cfg(feature = "gecko")]
pub fn new_leaked() -> Self {
SharedRwLock {
cell: Some(Arc::new_leaked(AtomicRefCell::new(SomethingZeroSizedButTyped))),
cell: Some(Arc::new_leaked(AtomicRefCell::new(
SomethingZeroSizedButTyped,
))),
}
}