Auto merge of #14699 - notriddle:constructive_commentary, r=emilio

Fix an outdated comment

The structures have changed, as has the syntax of the Rust language.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14699)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-12-24 06:42:57 -08:00 committed by GitHub
commit f850918d8e

View file

@ -141,17 +141,22 @@ pub struct InlineFragmentsConstructionResult {
/// The resulting `ConstructionItem` for the outer `span` will be: /// The resulting `ConstructionItem` for the outer `span` will be:
/// ///
/// ```ignore /// ```ignore
/// ConstructionItem::InlineFragments(Some(~[ /// ConstructionItem::InlineFragments(
/// InlineBlockSplit { /// InlineFragmentsConstructionResult{
/// predecessor_fragments: ~[ /// splits: linked_list![
/// A /// InlineBlockSplit{
/// ], /// predecessors: IntermediateInlineFragments{
/// block: ~BlockFlow { /// fragments: linked_list![A],
/// B /// absolute_descendents: AbsoluteDescendents{
/// descendant_links: vec![]
/// }
/// }, /// },
/// }),~[ /// flow: B
/// C /// }
/// ]) /// ],
/// fragments: linked_list![C],
/// }
/// )
/// ``` /// ```
#[derive(Clone)] #[derive(Clone)]
pub struct InlineBlockSplit { pub struct InlineBlockSplit {