From 1da26f73955ffe4e2c450029920c625f0bd2c883 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Fri, 9 Dec 2022 13:36:56 +0300 Subject: [PATCH] LibWeb: Fix typo in TableFormattingContext.h --- Userland/Libraries/LibWeb/Layout/TableFormattingContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h b/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h index a86e1d77c1d..7b14eec164b 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 }; };