Skip to content

Commit 9d741d7

Browse files
committed
style: Inline fmt args
1 parent 5d85758 commit 9d741d7

File tree

1 file changed

+1
-1
lines changed
  • crates/completest-pty/src

1 file changed

+1
-1
lines changed

crates/completest-pty/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ fn comptest(
472472

473473
let mut stream = process.get_raw_handle()?;
474474
// pass the completion input
475-
write!(stream, "{}", input)?;
475+
write!(stream, "{input}")?;
476476
stream.flush()?;
477477

478478
let (snd, rcv) = std::sync::mpsc::channel();

0 commit comments

Comments
 (0)