From f2769f30101ea73c53578ea2cbbc6c9bc89fd82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20D=C3=ADaz?= <49416765+AgustinRamiroDiaz@users.noreply.github.com> Date: Wed, 9 Aug 2023 11:48:21 -0300 Subject: [PATCH] Fix dobule "for" typo (#3189) --- crates/egui_extras/src/strip.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/egui_extras/src/strip.rs b/crates/egui_extras/src/strip.rs index 52a768f3..86b8db3e 100644 --- a/crates/egui_extras/src/strip.rs +++ b/crates/egui_extras/src/strip.rs @@ -72,13 +72,13 @@ impl<'a> StripBuilder<'a> { self } - /// Allocate space for for one column/row. + /// Allocate space for one column/row. pub fn size(mut self, size: Size) -> Self { self.sizing.add(size); self } - /// Allocate space for for several columns/rows at once. + /// Allocate space for several columns/rows at once. pub fn sizes(mut self, size: Size, count: usize) -> Self { for _ in 0..count { self.sizing.add(size);