Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix spelling of bottom_up_flow
  • Loading branch information
mbrubeck committed Aug 8, 2017
1 parent d1a37f1 commit ee697a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/layout/parallel.rs
Expand Up @@ -82,7 +82,7 @@ impl FlowParallelInfo {
///
/// The only communication between siblings is that they both
/// fetch-and-subtract the parent's children count.
fn buttom_up_flow(mut unsafe_flow: UnsafeFlow,
fn bottom_up_flow(mut unsafe_flow: UnsafeFlow,
assign_bsize_traversal: &AssignBSizes) {
loop {
// Get a real flow.
Expand Down Expand Up @@ -156,7 +156,7 @@ fn top_down_flow<'scope>(unsafe_flows: &[UnsafeFlow],

// If there were no more children, start assigning block-sizes.
if !had_children {
buttom_up_flow(*unsafe_flow, &assign_bsize_traversal)
bottom_up_flow(*unsafe_flow, &assign_bsize_traversal)
}
}

Expand Down

0 comments on commit ee697a9

Please sign in to comment.