aboutsummaryrefslogtreecommitdiff
path: root/src/bin/sctd.rs
diff options
context:
space:
mode:
authorAmir M. Saeid <amir@glgdgt.com>2022-10-10 08:37:26 +0100
committerGitHub <noreply@github.com>2022-10-10 08:37:26 +0100
commit86ae6e4ff18477f0d598367fba09f940b7b62cd8 (patch)
tree85b1fc3e7ec35872f62b942cf56cb532570acdc2 /src/bin/sctd.rs
parent118e4ca4e3e30f14941f5d2bcc7275b2a8733f13 (diff)
parentdb4cdb2bcf6b4c2913ff7256b84d4b073cc5374d (diff)
Merge pull request #5 from victorz/fix/typo-temprature
Fix typo ("temprature" -> "temperature")
Diffstat (limited to 'src/bin/sctd.rs')
-rw-r--r--src/bin/sctd.rs2
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!(