Fix cargo fmt

This commit is contained in:
Maxim Zhiburt 2024-06-10 11:21:13 +03:00
parent e50a6cedfd
commit 8f73a21a18

View File

@ -625,7 +625,7 @@ fn repeat_vertical(
let span = Span::styled(&text, style);
for row in 0..height {
for col in 0 .. width {
for col in 0..width {
buf.set_span(x + col, y + row, &span, 1);
}
}