aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/construct.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2014-10-28 12:00:35 -0700
committerPatrick Walton <pcwalton@mimiga.net>2014-10-28 12:00:35 -0700
commit68091d7a8629833539914b6326207f5be0bdc7d1 (patch)
tree355e4c9414b6db9a83d58d21bfc2b1965b7a9481 /components/layout/construct.rs
parent3b6e035d0d5e4055adfdc396e322fab82759fe9e (diff)
downloadservo-68091d7a8629833539914b6326207f5be0bdc7d1.tar.gz
servo-68091d7a8629833539914b6326207f5be0bdc7d1.zip
layout: Make some formatting cleanups.
These should have no effect on functionality.
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r--components/layout/construct.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs
index 424826f5d8c..7a3c3c7f133 100644
--- a/components/layout/construct.rs
+++ b/components/layout/construct.rs
@@ -1192,11 +1192,11 @@ pub trait FlowConstructionUtils {
fn add_new_child(&mut self, new_child: FlowRef);
/// Finishes a flow. Once a flow is finished, no more child flows or boxes may be added to it.
- /// This will normally run the bubble-inline-sizes (minimum and preferred -- i.e. intrinsic -- inline-size)
- /// calculation, unless the global `bubble_inline-sizes_separately` flag is on.
+ /// This will normally run the bubble-inline-sizes (minimum and preferred -- i.e. intrinsic --
+ /// inline-size) calculation, unless the global `bubble_inline-sizes_separately` flag is on.
///
- /// All flows must be finished at some point, or they will not have their intrinsic inline-sizes
- /// properly computed. (This is not, however, a memory safety problem.)
+ /// All flows must be finished at some point, or they will not have their intrinsic inline-
+ /// sizes properly computed. (This is not, however, a memory safety problem.)
fn finish(&mut self);
}
@@ -1217,8 +1217,8 @@ impl FlowConstructionUtils for FlowRef {
}
/// Finishes a flow. Once a flow is finished, no more child flows or fragments may be added to
- /// it. This will normally run the bubble-inline-sizes (minimum and preferred -- i.e. intrinsic --
- /// inline-size) calculation, unless the global `bubble_inline-sizes_separately` flag is on.
+ /// it. This will normally run the bubble-inline-sizes (minimum and preferred -- i.e. intrinsic
+ /// -- inline-size) calculation, unless the global `bubble_inline-sizes_separately` flag is on.
///
/// All flows must be finished at some point, or they will not have their intrinsic inline-sizes
/// properly computed. (This is not, however, a memory safety problem.)