diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-01-11 02:23:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-11 02:23:13 +0100 |
commit | c2c8d6bf371433a3158fda769829714c5b99f62a (patch) | |
tree | ef5e8624174aa108de8a7f62f09f0fa18904c2cf /alacritty_terminal/src/term/mod.rs | |
parent | c34ec12c309695e4c14d8e50b5f3f54198f70775 (diff) | |
download | alacritty-c2c8d6bf371433a3158fda769829714c5b99f62a.tar.gz alacritty-c2c8d6bf371433a3158fda769829714c5b99f62a.zip |
Move Alacritty to organization
This fixes various outdated links pointing to the old jwilm/alacritty
repository.
Since `copypasta` now has its own github repository at
https://github.com/alacritty/copypasta, the sources have been removed
from Alacritty.
Diffstat (limited to 'alacritty_terminal/src/term/mod.rs')
-rw-r--r-- | alacritty_terminal/src/term/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/term/mod.rs b/alacritty_terminal/src/term/mod.rs index acd14e7e..3e8d8618 100644 --- a/alacritty_terminal/src/term/mod.rs +++ b/alacritty_terminal/src/term/mod.rs @@ -395,7 +395,7 @@ impl<'a, C> Iterator for RenderableCellsIter<'a, C> { inner: self.grid[self.cursor], column: self.cursor.col, // Using `self.cursor.line` leads to inconsitent cursor position when - // scrolling. See https://github.com/jwilm/alacritty/issues/2570 for more + // scrolling. See https://github.com/alacritty/alacritty/issues/2570 for more // info. line: self.inner.line(), }; |