1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:27:45 +00:00

LibWeb: Fix typo in TableFormattingContext.h

This commit is contained in:
Aliaksandr Kalenik 2022-12-09 13:36:56 +03:00 committed by Andreas Kling
parent c302c4081b
commit 1da26f7395

View file

@ -46,7 +46,7 @@ private:
size_t column_index; size_t column_index;
size_t row_index; size_t row_index;
size_t column_span; size_t column_span;
size_t raw_span; size_t row_span;
float baseline { 0 }; float baseline { 0 };
}; };