1
0
mirror of https://github.com/danog/ytop.git synced 2024-11-26 20:15:03 +01:00

Celcius -> Celsius

This commit is contained in:
Caleb Bassi 2020-01-21 10:45:15 -08:00
parent 414eb36bc5
commit 88a845616d
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -602,7 +602,7 @@ dependencies = [
[[package]] [[package]]
name = "psutil" name = "psutil"
version = "1.7.0" version = "1.7.0"
source = "git+https://github.com/borntyping/rust-psutil#d74a2895d422d3a8c030af0f3d205c43786b0e98" source = "git+https://github.com/borntyping/rust-psutil#f29334464938d3bdc814d84b9363dac18e585deb"
dependencies = [ dependencies = [
"glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"nix 0.16.1 (git+https://github.com/nix-rust/nix)", "nix 0.16.1 (git+https://github.com/nix-rust/nix)",

View File

@ -47,7 +47,7 @@ impl UpdatableWidget for TempWidget<'_> {
if self.fahrenheit { if self.fahrenheit {
sensor.current().fahrenheit() sensor.current().fahrenheit()
} else { } else {
sensor.current().celcius() sensor.current().celsius()
}, },
) )
}) })