diff options
| author | Victor Zamanian <victor.zamanian@gmail.com> | 2022-10-08 00:10:02 +0200 |
|---|---|---|
| committer | Victor Zamanian <victor.zamanian@gmail.com> | 2022-10-08 00:10:02 +0200 |
| commit | db4cdb2bcf6b4c2913ff7256b84d4b073cc5374d (patch) | |
| tree | 85b1fc3e7ec35872f62b942cf56cb532570acdc2 /src/bin/sctd.rs | |
| parent | 118e4ca4e3e30f14941f5d2bcc7275b2a8733f13 (diff) | |
Fix typo ("temprature" -> "temperature")
Diffstat (limited to 'src/bin/sctd.rs')
| -rw-r--r-- | src/bin/sctd.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/sctd.rs b/src/bin/sctd.rs index e1f4821..81e65e5 100644 --- a/src/bin/sctd.rs +++ b/src/bin/sctd.rs @@ -48,7 +48,7 @@ fn main() { let new_temp = sctd::get_temp(utc, &ss, latitude, longitude) as u32; if new_temp != temp { temp = new_temp; - info!("setting temprature to {}", temp); + info!("setting temperature to {}", temp); sctd::set_temp(temp); } else { debug!( |
