aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/grid/mod.rs
diff options
context:
space:
mode:
authorJDTX <jdtx@fr0st.me>2019-04-28 16:42:43 -0500
committerChristian Duerr <chrisduerr@users.noreply.github.com>2019-04-28 21:42:43 +0000
commit2c462c7d03e57166c4d11e809777d7c8ad4832b7 (patch)
tree52fe5e2bb4e55a96ead6de845c72df4eef37ce50 /alacritty_terminal/src/grid/mod.rs
parentce53639553e5fc739f6db434b58704b2e9b405b7 (diff)
downloadalacritty-2c462c7d03e57166c4d11e809777d7c8ad4832b7.tar.gz
alacritty-2c462c7d03e57166c4d11e809777d7c8ad4832b7.zip
Fix spelling mistakes
Diffstat (limited to 'alacritty_terminal/src/grid/mod.rs')
-rw-r--r--alacritty_terminal/src/grid/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/grid/mod.rs b/alacritty_terminal/src/grid/mod.rs
index 3a6bacf8..54b496af 100644
--- a/alacritty_terminal/src/grid/mod.rs
+++ b/alacritty_terminal/src/grid/mod.rs
@@ -406,7 +406,7 @@ impl<T: GridCell + Copy + Clone> Grid<T> {
// starts at the top, we can do a full rotation which just involves
// changing the start index.
//
- // To accomodate scroll regions, rows are reordered at the end.
+ // To accommodate scroll regions, rows are reordered at the end.
if region.start == Line(0) {
// Rotate the entire line buffer. If there's a scrolling region
// active, the bottom lines are restored in the next step.