diff --git a/Libraries/LibWeb/Layout/FlexFormattingContext.cpp b/Libraries/LibWeb/Layout/FlexFormattingContext.cpp index a0a6de22fe9..760a6a524ca 100644 --- a/Libraries/LibWeb/Layout/FlexFormattingContext.cpp +++ b/Libraries/LibWeb/Layout/FlexFormattingContext.cpp @@ -965,7 +965,7 @@ void FlexFormattingContext::resolve_flexible_lengths_for_line(FlexLine& line) // 5. Loop while (true) { // a. Check for flexible items. - // If all the flex items on the line are frozen, free space has been distributed; exit this loop. + // If all the flex items on the line are frozen, exit this loop. if (all_of(line.items, [](auto const& item) { return item.frozen; })) { break; }