diff options
author | Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com> | 2022-12-09 13:36:56 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-09 12:53:05 +0100 |
commit | 1da26f73955ffe4e2c450029920c625f0bd2c883 (patch) | |
tree | 3e47e6d8f5f643f22e9ef7440b3f6f11c214bf40 /Userland/Libraries/LibWeb | |
parent | c302c4081b937ee696b12684fe0723a34d0589c8 (diff) | |
download | serenity-1da26f73955ffe4e2c450029920c625f0bd2c883.zip |
LibWeb: Fix typo in TableFormattingContext.h
Diffstat (limited to 'Userland/Libraries/LibWeb')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/TableFormattingContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h b/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h index a86e1d77c1..7b14eec164 100644 --- a/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h +++ b/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h @@ -46,7 +46,7 @@ private: size_t column_index; size_t row_index; size_t column_span; - size_t raw_span; + size_t row_span; float baseline { 0 }; }; |