aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-02-08 19:56:04 +0100
committerMs2ger <ms2ger@gmail.com>2015-02-08 19:56:04 +0100
commita819b0b1b609d94e2b7d5a352f1c0d8592874a3c (patch)
tree8b46008127ac2e19d4d616a24c8a0afe7740cb6f
parentc3acbd90d83f7d787311362778eb2d62bd0f189b (diff)
downloadservo-a819b0b1b609d94e2b7d5a352f1c0d8592874a3c.tar.gz
servo-a819b0b1b609d94e2b7d5a352f1c0d8592874a3c.zip
Fix the documentation comment syntax in flow_ref.rs.
-rw-r--r--components/layout/flow_ref.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/flow_ref.rs b/components/layout/flow_ref.rs
index 605a7e4ede5..85d40b6b493 100644
--- a/components/layout/flow_ref.rs
+++ b/components/layout/flow_ref.rs
@@ -2,9 +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/. */
-/// Reference-counted pointers to flows.
-///
-/// Eventually, with dynamically sized types in Rust, much of this code will be superfluous.
+//! Reference-counted pointers to flows.
+//!
+//! Eventually, with dynamically sized types in Rust, much of this code will be superfluous.
use flow::Flow;
use flow;