Skip to content

Commit

Permalink
Fix an outdated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
notriddle committed Dec 23, 2016
1 parent dd2aa41 commit 7c7f76c
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions components/layout/construct.rs
Expand Up @@ -141,17 +141,22 @@ pub struct InlineFragmentsConstructionResult {
/// The resulting `ConstructionItem` for the outer `span` will be:
///
/// ```ignore
/// ConstructionItem::InlineFragments(Some(~[
/// InlineBlockSplit {
/// predecessor_fragments: ~[
/// A
/// ConstructionItem::InlineFragments(
/// InlineFragmentsConstructionResult{
/// splits: linked_list![
/// InlineBlockSplit{
/// predecessors: IntermediateInlineFragments{
/// fragments: linked_list![A],
/// absolute_descendents: AbsoluteDescendents{
/// descendant_links: vec![]
/// }
/// },
/// flow: B
/// }
/// ],
/// block: ~BlockFlow {
/// B
/// },
/// }),~[
/// C
/// ])
/// fragments: linked_list![C],
/// }
/// )
/// ```
#[derive(Clone)]
pub struct InlineBlockSplit {
Expand Down

0 comments on commit 7c7f76c

Please sign in to comment.