From 2c462c7d03e57166c4d11e809777d7c8ad4832b7 Mon Sep 17 00:00:00 2001 From: JDTX Date: Sun, 28 Apr 2019 16:42:43 -0500 Subject: Fix spelling mistakes --- alacritty_terminal/src/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty_terminal/src/input.rs') diff --git a/alacritty_terminal/src/input.rs b/alacritty_terminal/src/input.rs index 0a5cd42b..79c57669 100644 --- a/alacritty_terminal/src/input.rs +++ b/alacritty_terminal/src/input.rs @@ -378,7 +378,7 @@ impl Action { // In theory, we should construct the keystrokes needed to produce the data we are // pasting... since that's neither practical nor sensible (and probably an impossible // task to solve in a general way), we'll just replace line breaks (windows and unix - // style) with a singe carriage return (\r, which is what the Enter key produces). + // style) with a single carriage return (\r, which is what the Enter key produces). ctx.write_to_pty(contents.replace("\r\n", "\r").replace("\n", "\r").into_bytes()); } } -- cgit