From f704d9cdf104912ad93a454b88eb557269261742 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Mon, 23 Sep 2019 13:17:23 -0700 Subject: [PATCH] Fix comment typo. --- src/bin/home.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/home.rs b/src/bin/home.rs index 3f26cd4..8e421d0 100644 --- a/src/bin/home.rs +++ b/src/bin/home.rs @@ -22,7 +22,7 @@ fn main() { let opts = Opt::from_args(); - //Display all the cpu usage for each core + // Display all the cpu usage for each core for i in 0..num_cpus::get() as u32 { bar.push(CpuWidget::new(i)); }