We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fb903f commit efcdde3Copy full SHA for efcdde3
src/temperature.rs
@@ -55,9 +55,9 @@ impl TemperatureDelta {
55
}
56
57
/// Create a new TemperatureDelta from a floating point value in Fahrenheit
58
- pub fn from_fahrenheit(farenheit_degrees: f64) -> Self {
+ pub fn from_fahrenheit(fahrenheit_degrees: f64) -> Self {
59
TemperatureDelta {
60
- kelvin_degrees: farenheit_degrees / 1.8,
+ kelvin_degrees: fahrenheit_degrees / 1.8,
61
62
63
0 commit comments