mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Modified doc command into module-level doc comment.
This commit is contained in:
parent
a2d0e251a0
commit
4d3a6de029
1 changed files with 14 additions and 14 deletions
|
@ -2,20 +2,20 @@
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* 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/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
/// Servo, the mighty web browser engine from the future.
|
//! Servo, the mighty web browser engine from the future.
|
||||||
///
|
//!
|
||||||
/// This is a very simple library that wires all of Servo's components
|
//! This is a very simple library that wires all of Servo's components
|
||||||
/// together as type `Browser`, along with a generic client
|
//! together as type `Browser`, along with a generic client
|
||||||
/// implementing the `WindowMethods` trait, to create a working web
|
//! implementing the `WindowMethods` trait, to create a working web
|
||||||
/// browser.
|
//! browser.
|
||||||
///
|
//!
|
||||||
/// The `Browser` type is responsible for configuring a
|
//! The `Browser` type is responsible for configuring a
|
||||||
/// `Constellation`, which does the heavy lifting of coordinating all
|
//! `Constellation`, which does the heavy lifting of coordinating all
|
||||||
/// of Servo's internal subsystems, including the `ScriptTask` and the
|
//! of Servo's internal subsystems, including the `ScriptTask` and the
|
||||||
/// `LayoutTask`, as well maintains the navigation context.
|
//! `LayoutTask`, as well maintains the navigation context.
|
||||||
///
|
//!
|
||||||
/// The `Browser` is fed events from a generic type that implements the
|
//! The `Browser` is fed events from a generic type that implements the
|
||||||
/// `WindowMethods` trait.
|
//! `WindowMethods` trait.
|
||||||
|
|
||||||
extern crate gaol;
|
extern crate gaol;
|
||||||
extern crate libc;
|
extern crate libc;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue