1
Fork 0
mirror of https://github.com/RGBCube/superfreq synced 2025-07-27 17:07:44 +00:00

treewide: fix typos

This commit is contained in:
RGBCube 2025-06-07 01:13:24 +03:00
parent da3f7935be
commit 84154fe6d4
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
2 changed files with 3 additions and 3 deletions

View file

@ -441,7 +441,7 @@ impl Cpu {
if !epps.iter().any(|avail_epp| avail_epp == epp) { if !epps.iter().any(|avail_epp| avail_epp == epp) {
bail!( bail!(
"EPP value '{epp}' is not availabile for {self}. available EPP values: {epps}", "EPP value '{epp}' is not available for {self}. available EPP values: {epps}",
epps = epps.join(", "), epps = epps.join(", "),
); );
} }

View file

@ -110,7 +110,7 @@ struct CpuLog {
/// CPU usage between 0-1, a percentage. /// CPU usage between 0-1, a percentage.
usage: f64, usage: f64,
/// CPU temperature in celcius. /// CPU temperature in celsius.
temperature: f64, temperature: f64,
} }
@ -261,7 +261,7 @@ impl Daemon {
} }
} }
// If we can't deterine the discharge rate, that means that // If we can't determine the discharge rate, that means that
// we were very recently started. Which is user activity. // we were very recently started. Which is user activity.
None => { None => {
interval *= 2; interval *= 2;