Skip to content

Commit

Permalink
Clippy 1.81
Browse files Browse the repository at this point in the history
  • Loading branch information
Pat-Lafon committed Sep 5, 2024
1 parent 8ac14bb commit dfbc7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brilirs/src/interp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ fn execute_effect_op<T: std::io::Write>(
if args.len() == 1 {
optimized_val_output(&mut state.out, state.env.get(*args.first().unwrap()))?;
// Add new line
state.out.write_all(&[b'\n'])?;
state.out.write_all(b"\n")?;
} else {
writeln!(
state.out,
Expand Down

0 comments on commit dfbc7cc

Please sign in to comment.