Skip to content

Commit

Permalink
refactor: make name of generic parameter consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcur committed Jul 16, 2024
1 parent 22da2c1 commit 9579b54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions termsnap-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -474,10 +474,10 @@ impl<W: PtyWriter> alacritty_terminal::event::EventListener for EventProxy<W> {
}

/// An in-memory terminal emulator.
pub struct Term<Ev: PtyWriter> {
pub struct Term<W: PtyWriter> {
lines: u16,
columns: u16,
term: AlacrittyTerm<EventProxy<Ev>>,
term: AlacrittyTerm<EventProxy<W>>,
processor: vte::ansi::Processor<vte::ansi::StdSyncHandler>,
}

Expand Down

0 comments on commit 9579b54

Please sign in to comment.