Skip to content

Commit

Permalink
Fix Bug: Telegram Bot Can Not Read Physical Core Count
Browse files Browse the repository at this point in the history
  • Loading branch information
GenshinMinecraft committed Dec 8, 2024
1 parent fd134ce commit 74955db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/get_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub async fn get_cpu_info() -> (Vec<String>, String, String) {
}
} else {
for (cpu, count) in cpu_counts {
cpu_name.push(format!("{} @ {} Physical Core", cpu, count))
cpu_name.push(format!("{} @ {} Core", cpu, count))
}
}

Expand Down

0 comments on commit 74955db

Please sign in to comment.