aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/lib.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-11-01 14:09:54 +0100
committerSimon Sapin <simon.sapin@exyr.org>2018-11-10 17:47:28 +0100
commita15d33a10e8a0aa1c02fa44ede50a63b95606b8f (patch)
tree5b0ef37530e77e646c2b6bc7df3d95e756607e77 /components/style/lib.rs
parente1fcffb336d763d851f14fae5cda464209552bb2 (diff)
downloadservo-a15d33a10e8a0aa1c02fa44ede50a63b95606b8f.tar.gz
servo-a15d33a10e8a0aa1c02fa44ede50a63b95606b8f.zip
`cargo fix --edition`
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r--components/style/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs
index 29df16f6183..ecf066fb431 100644
--- a/components/style/lib.rs
+++ b/components/style/lib.rs
@@ -215,10 +215,10 @@ macro_rules! reexport_computed_values {
/// [computed]: https://drafts.csswg.org/css-cascade/#computed
pub mod computed_values {
$(
- pub use properties::longhands::$name::computed_value as $name;
+ pub use crate::properties::longhands::$name::computed_value as $name;
)+
// Don't use a side-specific name needlessly:
- pub use properties::longhands::border_top_style::computed_value as border_style;
+ pub use crate::properties::longhands::border_top_style::computed_value as border_style;
}
}
}