diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-03-05 11:09:58 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-03-05 11:09:58 -0700 |
commit | 7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013 (patch) | |
tree | 48e10efbc7e3389b88d53666bd2e1b92ec198da0 /components/layout/sequential.rs | |
parent | caf5663e0981f36a621dde1dd51be2bd0a15dd24 (diff) | |
parent | 559ff68b31eabdf1025fba2fcc386b504256a0b2 (diff) | |
download | servo-7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013.tar.gz servo-7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013.zip |
auto merge of #5135 : iamdanfox/servo/fix-5120-rename-layout-util, r=jdm
A simple rename/refactor (https://github.com/servo/servo/issues/5120)
My first servo contribution!
Diffstat (limited to 'components/layout/sequential.rs')
-rw-r--r-- | components/layout/sequential.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/sequential.rs b/components/layout/sequential.rs index ff2bd948c51..7007fdfa427 100644 --- a/components/layout/sequential.rs +++ b/components/layout/sequential.rs @@ -17,8 +17,8 @@ use wrapper::{PostorderNodeMutTraversal}; use wrapper::{PreorderDomTraversal, PostorderDomTraversal}; use geom::point::Point2D; -use servo_util::geometry::{Au, ZERO_POINT}; -use servo_util::opts; +use util::geometry::{Au, ZERO_POINT}; +use util::opts; pub fn traverse_dom_preorder(root: LayoutNode, shared_layout_context: &SharedLayoutContext) { |