mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-16 06:58:45 +00:00
Correct minor typos (#14)
* fix: Correct minor typo - relase -> release * fix: Correct minor typos - farenheit, farhenheit -> fahrenheit - celcius -> celsius * fix: Correct minor typo - sume -> sum
This commit is contained in:
@@ -3,9 +3,9 @@ mod test {
|
||||
use super::super::assignment02::*;
|
||||
|
||||
#[test]
|
||||
fn test_farenheit() {
|
||||
assert_eq!(farhenheit_to_celcius(32.0), 0.0);
|
||||
assert_eq!(farhenheit_to_celcius(212.0), 100.0);
|
||||
fn test_fahrenheit() {
|
||||
assert_eq!(fahrenheit_to_celsius(32.0), 0.0);
|
||||
assert_eq!(fahrenheit_to_celsius(212.0), 100.0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
||||
Reference in New Issue
Block a user