Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kumavale committed Dec 31, 2024
1 parent cef57b8 commit 738fafa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ where
// If `--instead-crlf` is true, change to "\r\n"
if *flags.lock().unwrap().instead_crlf() && key == Key::Char('\r') {
// Send carriage return
port.send(&[ b'\r', b'\n' ]);
port.send(b"\r\n");
continue;
}

Expand Down

0 comments on commit 738fafa

Please sign in to comment.