From 4d9aed8f830f9cc9d32531c3ad9570987a317a56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Sun, 2 Jun 2024 15:14:40 -0400 Subject: [PATCH] Add missing word (#4603) Was reading the docs and noticed a typo. * Closes --- crates/egui_extras/src/table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui_extras/src/table.rs b/crates/egui_extras/src/table.rs index 0cbf5e13..cfcc0c9d 100644 --- a/crates/egui_extras/src/table.rs +++ b/crates/egui_extras/src/table.rs @@ -956,7 +956,7 @@ impl<'a> TableBody<'a> { /// Add rows with varying heights. /// /// This takes a very slight performance hit compared to [`TableBody::rows`] due to the need to - /// iterate over all row heights in to calculate the virtual table height above and below the + /// iterate over all row heights in order to calculate the virtual table height above and below the /// visible region, but it is many orders of magnitude more performant than adding individual /// heterogeneously-sized rows using [`TableBody::row`] at the cost of the additional complexity /// that comes with pre-calculating row heights and representing them as an iterator.