Skip to content

Commit d27e8b3

Browse files
committed
fix formatting
1 parent 5a484b0 commit d27e8b3

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/dots.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ macro_rules! GLYPH {() => {""}}
55
macro_rules! GAP {() => {" "}}
66

77
const NO_COLORS_STR: &str = concat!(
8-
GLYPH!(), GAP!(),
9-
GLYPH!(), GAP!(),
10-
GLYPH!(), GAP!(),
11-
GLYPH!(), GAP!(),
12-
GLYPH!(), GAP!(),
13-
GLYPH!(),
8+
GLYPH!(), GAP!(),
9+
GLYPH!(), GAP!(),
10+
GLYPH!(), GAP!(),
11+
GLYPH!(), GAP!(),
12+
GLYPH!(), GAP!(),
13+
GLYPH!(),
1414
);
1515

1616
const COLORS_STR: &str = concat!(
17-
BLUE!(), GLYPH!(), GAP!(),
18-
CYAN!(), GLYPH!(), GAP!(),
19-
GREEN!(), GLYPH!(), GAP!(),
20-
YELLOW!(), GLYPH!(), GAP!(),
21-
RED!(), GLYPH!(), GAP!(),
22-
MAGENTA!(), GLYPH!(), RESET!(),
17+
BLUE!(), GLYPH!(), GAP!(),
18+
CYAN!(), GLYPH!(), GAP!(),
19+
GREEN!(), GLYPH!(), GAP!(),
20+
YELLOW!(), GLYPH!(), GAP!(),
21+
RED!(), GLYPH!(), GAP!(),
22+
MAGENTA!(), GLYPH!(), RESET!(),
2323
);
2424

2525
#[must_use]

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
3838
uptime: get_current()?,
3939
memory_usage: get_memory_usage()?,
4040
storage: get_root_disk_usage()?,
41-
dots: print_dots(),
41+
dots: print_dots(),
4242
};
4343
print_system_info(&fields)?;
4444
}

0 commit comments

Comments
 (0)