diff options
| author | Kian-Meng Ang <kianmeng.ang@gmail.com> | 2023-03-22 16:02:51 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-22 09:02:51 +0100 |
| commit | 25acefeb5b0cf0977ad01fe3128d494d9617a2cf (patch) | |
| tree | 5f629b2aee909022be2be674a60d10fe59bc77c3 /library/src/layout/grid.rs | |
| parent | 26f4321a5e9eb56b905ca9eee9cf52422c7ff859 (diff) | |
Fix typos (#115)
Found via `codespell -S target -L
crate,ist,thi,alle,dedented,ue,tung,nd,ende,overriden,dependant`
Diffstat (limited to 'library/src/layout/grid.rs')
| -rw-r--r-- | library/src/layout/grid.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/layout/grid.rs b/library/src/layout/grid.rs index 5c3d132e..e0c8b684 100644 --- a/library/src/layout/grid.rs +++ b/library/src/layout/grid.rs @@ -659,7 +659,7 @@ impl<'a, 'v> GridLayouter<'a, 'v> { assert!(x < self.cols.len()); assert!(y < self.rows.len()); - // Columns are reorded, but the cell slice is not. + // Columns are reorder, but the cell slice is not. if self.is_rtl { x = self.cols.len() - 1 - x; } |
