diff options
author | Saurabh Anand <saurabhanandiit@gmail.com> | 2014-02-27 14:47:33 +0530 |
---|---|---|
committer | Saurabh Anand <saurabhanandiit@gmail.com> | 2014-02-28 13:32:00 +0530 |
commit | 5c5cb3e9a724508956791c8b3089fd2c40e7fe2d (patch) | |
tree | c74e56e1cf9d90921d9dd453ba52d5d618d7d132 /src/components/script/dom/document.rs | |
parent | 82b74a373a404c334ae711ec78dd4d06690f2cbb (diff) | |
download | servo-5c5cb3e9a724508956791c8b3089fd2c40e7fe2d.tar.gz servo-5c5cb3e9a724508956791c8b3089fd2c40e7fe2d.zip |
Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)
Diffstat (limited to 'src/components/script/dom/document.rs')
-rw-r--r-- | src/components/script/dom/document.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/document.rs b/src/components/script/dom/document.rs index a5b1903c903..5994f653f18 100644 --- a/src/components/script/dom/document.rs +++ b/src/components/script/dom/document.rs @@ -9,7 +9,7 @@ use dom::bindings::codegen::InheritTypes::{DocumentTypeCast, HTMLHtmlElementCast use dom::bindings::codegen::DocumentBinding; use dom::bindings::js::JS; use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; -use dom::bindings::utils::{ErrorResult, Fallible, NotSupported, InvalidCharacter, HierarchyRequest}; +use dom::bindings::error::{ErrorResult, Fallible, NotSupported, InvalidCharacter, HierarchyRequest}; use dom::bindings::utils::{xml_name_type, InvalidXMLName}; use dom::comment::Comment; use dom::documentfragment::DocumentFragment; |