Fix some typos

Signed-off-by: Dirk Stolle <striezel-dev@web.de>
This commit is contained in:
Dirk Stolle 2022-12-17 03:22:34 +01:00
parent dca3b2f0c1
commit f2260e7c18
8 changed files with 12 additions and 12 deletions

View file

@ -312,8 +312,8 @@ impl<'a> PostorderFlowTraversal for AssignBSizes<'a> {
fn should_process(&self, flow: &mut dyn Flow) -> bool {
let base = flow.base();
base.restyle_damage.intersects(ServoRestyleDamage::REFLOW_OUT_OF_FLOW | ServoRestyleDamage::REFLOW) &&
// The fragmentation countainer is responsible for calling
// Flow::fragment recursively
// The fragmentation container is responsible for calling
// Flow::fragment recursively.
!base.flags.contains(FlowFlags::CAN_BE_FRAGMENTED)
}
}