From 8f73a21a189c0ac8d2e249d7b1d8095b5fc6c649 Mon Sep 17 00:00:00 2001 From: Maxim Zhiburt Date: Mon, 10 Jun 2024 11:21:13 +0300 Subject: [PATCH] Fix cargo fmt --- crates/nu-explore/src/views/record/table_widget.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-explore/src/views/record/table_widget.rs b/crates/nu-explore/src/views/record/table_widget.rs index 41e4fa3172..7149a7ce60 100644 --- a/crates/nu-explore/src/views/record/table_widget.rs +++ b/crates/nu-explore/src/views/record/table_widget.rs @@ -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); } }