diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-11-20 14:57:13 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-11-20 15:29:09 +0100 |
commit | 08066800cd1a59e56a84dfb0c87f727401aa55e5 (patch) | |
tree | cc53a29cac629c47eeacbf071d45cc3985c872a9 /components/style/context.rs | |
parent | 72e4c6dc21c132d49cf0a5f68a3ba45d16cc8322 (diff) | |
download | servo-08066800cd1a59e56a84dfb0c87f727401aa55e5.tar.gz servo-08066800cd1a59e56a84dfb0c87f727401aa55e5.zip |
Rename selector_matching.rs to stylist.rs
Diffstat (limited to 'components/style/context.rs')
-rw-r--r-- | components/style/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/context.rs b/components/style/context.rs index 2707a799713..d5819555cf6 100644 --- a/components/style/context.rs +++ b/components/style/context.rs @@ -11,11 +11,11 @@ use error_reporting::ParseErrorReporter; use euclid::Size2D; use matching::StyleSharingCandidateCache; use parking_lot::RwLock; -use selector_matching::Stylist; use std::cell::RefCell; use std::collections::HashMap; use std::sync::{Arc, Mutex}; use std::sync::mpsc::Sender; +use stylist::Stylist; use timer::Timer; /// This structure is used to create a local style context from a shared one. |