From 264749b8af15eaef4bd17a0317f8ce9a14abc677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Tue, 18 Feb 2025 12:11:48 -0500 Subject: [PATCH] Fix typo in docstring for `Column::auto_size_this_frame` (#5681) * [x] I have followed the instructions in the PR template --- 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 0a6fe690..5fca1f9d 100644 --- a/crates/egui_extras/src/table.rs +++ b/crates/egui_extras/src/table.rs @@ -39,7 +39,7 @@ pub struct Column { resizable: Option, - /// If set, we should acurately measure the size of this column this frame + /// If set, we should accurately measure the size of this column this frame /// so that we can correctly auto-size it. This is done as a `sizing_pass`. auto_size_this_frame: bool, }