Skip to content

Commit 74a9426

Browse files
committed
style: Make clippy happy
1 parent 50e2e03 commit 74a9426

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ impl Line {
243243
Self::Control { name, args } => {
244244
write!(out, ".{name}")?;
245245
for arg in args {
246-
write!(out, " {}", &escape_spaces(arg))?;
246+
write!(out, " {}", escape_spaces(arg))?;
247247
}
248248
}
249249
Self::Text(inlines) => {

0 commit comments

Comments
 (0)