diff --git a/egui_extras/src/strip.rs b/egui_extras/src/strip.rs index 0bc6e1028..131c55cb2 100644 --- a/egui_extras/src/strip.rs +++ b/egui_extras/src/strip.rs @@ -130,7 +130,7 @@ impl<'a, 'b> Strip<'a, 'b> { pub fn empty(&mut self) { assert!( !self.sizes.is_empty(), - "Tried using more strip cells then available." + "Tried using more strip cells than available." ); let (width, height) = self.next_cell_size(); @@ -140,7 +140,7 @@ impl<'a, 'b> Strip<'a, 'b> { fn cell_impl(&mut self, clip: bool, add_contents: impl FnOnce(&mut Ui)) { assert!( !self.sizes.is_empty(), - "Tried using more strip cells then available." + "Tried using more strip cells than available." ); let (width, height) = self.next_cell_size(); diff --git a/egui_extras/src/table.rs b/egui_extras/src/table.rs index b45e06ba3..5ef5bc67f 100644 --- a/egui_extras/src/table.rs +++ b/egui_extras/src/table.rs @@ -300,7 +300,7 @@ impl<'a, 'b> TableRow<'a, 'b> { fn column(&mut self, clip: bool, add_contents: impl FnOnce(&mut Ui)) -> Response { assert!( !self.widths.is_empty(), - "Tried using more table columns then available." + "Tried using more table columns than available." ); let width = self.widths[0];