aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools/protocol.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-01-19 08:33:48 -0700
committerbors-servo <metajack+bors@gmail.com>2015-01-19 08:33:48 -0700
commitee94b3e8bf659c847bda967700272f8f98fdb0cc (patch)
treeb2eb4585705b7b71229647ed2d77289d00474f75 /components/devtools/protocol.rs
parentf3dfe04fa45bd723fac40d1452550d55240f80f8 (diff)
parent394f8163433559cea294cb4a4e335cc43ccde1fe (diff)
downloadservo-ee94b3e8bf659c847bda967700272f8f98fdb0cc.tar.gz
servo-ee94b3e8bf659c847bda967700272f8f98fdb0cc.zip
auto merge of #4662 : Ms2ger/servo/overlong, r=larsbergstrom
The Rust style guide suggests 100, but we have too many violations in the tree already. This check can be tightened over time.
Diffstat (limited to 'components/devtools/protocol.rs')
-rw-r--r--components/devtools/protocol.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/devtools/protocol.rs b/components/devtools/protocol.rs
index be27eed2ec1..df9078c7bf1 100644
--- a/components/devtools/protocol.rs
+++ b/components/devtools/protocol.rs
@@ -2,7 +2,9 @@
* 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/. */
-/// Low-level wire protocol implementation. Currently only supports [JSON packets](https://wiki.mozilla.org/Remote_Debugging_Protocol_Stream_Transport#JSON_Packets).
+//! Low-level wire protocol implementation. Currently only supports
+//! [JSON packets]
+//! (https://wiki.mozilla.org/Remote_Debugging_Protocol_Stream_Transport#JSON_Packets).
use serialize::{json, Encodable};
use serialize::json::Json;