diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-01-10 07:39:44 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-01-10 07:39:44 -0700 |
commit | 1834359f1661fe504e5b8ff3ee2bc0cb8d744d21 (patch) | |
tree | cc16fe0ac78298b2ca48cad257f941565f914697 /components | |
parent | d9a26ad595ee94361ce20064355fd77061eda625 (diff) | |
parent | 1fb863ab3f2ac01a31628c2eb53c38762f66da30 (diff) | |
download | servo-1834359f1661fe504e5b8ff3ee2bc0cb8d744d21.tar.gz servo-1834359f1661fe504e5b8ff3ee2bc0cb8d744d21.zip |
auto merge of #4606 : Ms2ger/servo/devtools-comment, r=larsbergstrom
Diffstat (limited to 'components')
-rw-r--r-- | components/devtools_traits/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/devtools_traits/lib.rs b/components/devtools_traits/lib.rs index 4fdbe2240fb..158a01272f6 100644 --- a/components/devtools_traits/lib.rs +++ b/components/devtools_traits/lib.rs @@ -2,6 +2,10 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +//! This module contains shared types and messages for use by devtools/script. +//! The traits are here instead of in script so that the devtools crate can be +//! modified independently of the rest of Servo. + #![crate_name = "devtools_traits"] #![crate_type = "rlib"] @@ -14,10 +18,6 @@ extern crate serialize; extern crate url; extern crate "util" as servo_util; -/// This module contains shared types and messages for use by devtools/script. -/// The traits are here instead of in script so that the devtools crate can be -/// modified independently of the rest of Servo. - pub use self::DevtoolsControlMsg::*; pub use self::DevtoolScriptControlMsg::*; pub use self::EvaluateJSReply::*; |