mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Fix the documentation comment for the devtools library.
Also removed a duplicated feature gate.
This commit is contained in:
parent
665f0e9c77
commit
58b89939c2
1 changed files with 5 additions and 5 deletions
|
@ -2,6 +2,11 @@
|
|||
* 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/. */
|
||||
|
||||
//! An actor-based remote devtools server implementation. Only tested with
|
||||
//! nightly Firefox versions at time of writing. Largely based on
|
||||
//! reverse-engineering of Firefox chrome devtool logs and reading of
|
||||
//! [code](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/).
|
||||
|
||||
#![crate_name = "devtools"]
|
||||
#![crate_type = "rlib"]
|
||||
|
||||
|
@ -10,14 +15,9 @@
|
|||
|
||||
#![feature(phase)]
|
||||
|
||||
#![feature(phase)]
|
||||
#[phase(plugin, link)]
|
||||
extern crate log;
|
||||
|
||||
/// An actor-based remote devtools server implementation. Only tested with nightly Firefox
|
||||
/// versions at time of writing. Largely based on reverse-engineering of Firefox chrome
|
||||
/// devtool logs and reading of [code](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/).
|
||||
|
||||
extern crate collections;
|
||||
extern crate core;
|
||||
extern crate devtools_traits;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue