diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-09-03 12:39:02 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-09-03 12:39:02 +0200 |
commit | c0f516f17d34b4195e248d5cf0b58469e124b675 (patch) | |
tree | 37c29157a527f35b7065e2ec079162c9c1f29160 /components | |
parent | 72b29d3202f1808ec96291403fd28f2b72497d78 (diff) | |
download | servo-c0f516f17d34b4195e248d5cf0b58469e124b675.tar.gz servo-c0f516f17d34b4195e248d5cf0b58469e124b675.zip |
style: Appease tidy.
Diffstat (limited to 'components')
-rw-r--r-- | components/style/gecko/conversions.rs | 2 | ||||
-rw-r--r-- | components/style/values/specified/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/style/gecko/conversions.rs b/components/style/gecko/conversions.rs index e85bc8ec310..3c1d334f4a8 100644 --- a/components/style/gecko/conversions.rs +++ b/components/style/gecko/conversions.rs @@ -722,7 +722,7 @@ pub mod basic_shape { let result: Vec<PathCommand> = gecko_path.mPath.iter().map(|gecko: &StylePathCommand| { // unsafe: cbindgen ensures the representation is the same. - unsafe{ ::std::mem::transmute(*gecko) } + unsafe { ::std::mem::transmute(*gecko) } }).collect(); Some(SVGPathData::new(result.into_boxed_slice())) }, diff --git a/components/style/values/specified/mod.rs b/components/style/values/specified/mod.rs index 31e37b3041d..6a395c21e58 100644 --- a/components/style/values/specified/mod.rs +++ b/components/style/values/specified/mod.rs @@ -102,8 +102,8 @@ pub mod grid; pub mod image; pub mod length; pub mod list; -pub mod outline; pub mod motion; +pub mod outline; pub mod percentage; pub mod position; pub mod rect; |