aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/term/cell.rs
diff options
context:
space:
mode:
authorPavel Roskin <1317472+proski@users.noreply.github.com>2023-10-25 16:20:58 -0700
committerGitHub <noreply@github.com>2023-10-25 23:20:58 +0000
commit75eef3be9680dbe3300186b06e19eac7f9dfab4b (patch)
treee59127474f8bdaae5be26dc53d25c3c9ed86d379 /alacritty_terminal/src/term/cell.rs
parent500b696ca8ed61c42f5954b10f1294e875d792ae (diff)
downloadalacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.tar.gz
alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.zip
Fix typos
Diffstat (limited to 'alacritty_terminal/src/term/cell.rs')
-rw-r--r--alacritty_terminal/src/term/cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/term/cell.rs b/alacritty_terminal/src/term/cell.rs
index ddf6a745..927687fb 100644
--- a/alacritty_terminal/src/term/cell.rs
+++ b/alacritty_terminal/src/term/cell.rs
@@ -298,7 +298,7 @@ mod tests {
// Expected cell size on 64-bit architectures.
const EXPECTED_CELL_SIZE: usize = 24;
- // Ensure that cell size isn't growning by accident.
+ // Ensure that cell size isn't growing by accident.
assert!(mem::size_of::<Cell>() <= EXPECTED_CELL_SIZE);
}