Minor fixes to codebase and docs.

This commit is contained in:
Dorian 2019-02-06 08:17:16 -05:00
parent de201f3cfa
commit 5d159644a4
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# Embedded Uptime # Embedded Unit Converter
Embed a small bit of code that converts between units of measure, e.g. Fahrenheit to Celsius. Embed a small bit of code that converts between units of measure, e.g. Fahrenheit to Celsius.

View File

@ -11,4 +11,4 @@ mod tests {
fn conversion_celsius_to_fahrenheit() { fn conversion_celsius_to_fahrenheit() {
assert_eq!(convert_celsius_to_fahrenheit(25.0), 77.0); assert_eq!(convert_celsius_to_fahrenheit(25.0), 77.0);
} }
} }