diff options
Diffstat (limited to 'components/devtools')
-rw-r--r-- | components/devtools/actors/browsing_context.rs | 3 | ||||
-rw-r--r-- | components/devtools/actors/console.rs | 3 | ||||
-rw-r--r-- | components/devtools/actors/inspector.rs | 3 | ||||
-rw-r--r-- | components/devtools/actors/network_event.rs | 3 | ||||
-rw-r--r-- | components/devtools/actors/timeline.rs | 2 | ||||
-rw-r--r-- | components/devtools/lib.rs | 2 | ||||
-rw-r--r-- | components/devtools/protocol.rs | 3 |
7 files changed, 7 insertions, 12 deletions
diff --git a/components/devtools/actors/browsing_context.rs b/components/devtools/actors/browsing_context.rs index 3b68fd516b3..8a36d19137a 100644 --- a/components/devtools/actors/browsing_context.rs +++ b/components/devtools/actors/browsing_context.rs @@ -2,8 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -//! Liberally derived from the [Firefox JS implementation] -//! (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webbrowser.js). +//! Liberally derived from the [Firefox JS implementation](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webbrowser.js). //! Connection point for remote devtools that wish to investigate a particular Browsing Context's contents. //! Supports dynamic attaching and detaching which control notifications of navigation, etc. diff --git a/components/devtools/actors/console.rs b/components/devtools/actors/console.rs index f9d7535e38f..f83fc3c05b2 100644 --- a/components/devtools/actors/console.rs +++ b/components/devtools/actors/console.rs @@ -2,8 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -//! Liberally derived from the [Firefox JS implementation] -//! (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webconsole.js). +//! Liberally derived from the [Firefox JS implementation](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webconsole.js). //! Mediates interaction between the remote web console and equivalent functionality (object //! inspection, JS evaluation, autocompletion) in Servo. diff --git a/components/devtools/actors/inspector.rs b/components/devtools/actors/inspector.rs index f625cc3b998..0728f967411 100644 --- a/components/devtools/actors/inspector.rs +++ b/components/devtools/actors/inspector.rs @@ -2,8 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -//! Liberally derived from the [Firefox JS implementation] -//! (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/inspector.js). +//! Liberally derived from the [Firefox JS implementation](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/inspector.js). use std::cell::RefCell; use std::net::TcpStream; diff --git a/components/devtools/actors/network_event.rs b/components/devtools/actors/network_event.rs index af360d46ca2..7eb664f9757 100644 --- a/components/devtools/actors/network_event.rs +++ b/components/devtools/actors/network_event.rs @@ -2,8 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -//! Liberally derived from the [Firefox JS implementation] -//! (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webconsole.js). +//! Liberally derived from the [Firefox JS implementation](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webconsole.js). //! Handles interaction with the remote web console on network events (HTTP requests, responses) in Servo. use std::net::TcpStream; diff --git a/components/devtools/actors/timeline.rs b/components/devtools/actors/timeline.rs index 2f86b214aa4..9a28bdcbefa 100644 --- a/components/devtools/actors/timeline.rs +++ b/components/devtools/actors/timeline.rs @@ -101,7 +101,7 @@ struct FramerateEmitterReply { /// HighResolutionStamp is struct that contains duration in milliseconds /// with accuracy to microsecond that shows how much time has passed since /// actor registry inited -/// analog https://w3c.github.io/hr-time/#sec-DOMHighResTimeStamp +/// analog <https://w3c.github.io/hr-time/#sec-DOMHighResTimeStamp> pub struct HighResolutionStamp(f64); impl HighResolutionStamp { diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs index b75e31b4c45..5ed2111ee6e 100644 --- a/components/devtools/lib.rs +++ b/components/devtools/lib.rs @@ -48,7 +48,7 @@ use crate::actors::worker::{WorkerActor, WorkerType}; use crate::protocol::JsonPacketStream; mod actor; -/// Corresponds to http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/ +/// Corresponds to <http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/> mod actors { pub mod browsing_context; pub mod console; diff --git a/components/devtools/protocol.rs b/components/devtools/protocol.rs index 2f086746e7a..8edbce95a8c 100644 --- a/components/devtools/protocol.rs +++ b/components/devtools/protocol.rs @@ -3,8 +3,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Low-level wire protocol implementation. Currently only supports -//! [JSON packets] -//! (https://wiki.mozilla.org/Remote_Debugging_Protocol_Stream_Transport#JSON_Packets). +//! [JSON packets](https://wiki.mozilla.org/Remote_Debugging_Protocol_Stream_Transport#JSON_Packets). use std::error::Error; use std::io::{Read, Write}; |