Minor cleanup

pull/2/head
Mark 2023-08-02 12:37:15 -07:00
parent 3ae2fc6041
commit f35aeefeb1
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
1 changed files with 9 additions and 6 deletions

View File

@ -112,16 +112,19 @@ impl Function {
"tobase" => {Some(Function::ToBase)},
"toC" => {Some(Function::ToCelsius)},
"fromC" => {Some(Function::FromCelsius)},
"toF" => {Some(Function::ToFahrenheit)},
"fromF" => {Some(Function::FromFahrenheit)},
"tocelsius" => {Some(Function::ToCelsius)},
"fromcelsius" => {Some(Function::FromCelsius)},
"tofahrenheit" => {Some(Function::ToFahrenheit)},
"fromfahrenheit" => {Some(Function::FromFahrenheit)},
"toCelsius" => {Some(Function::ToCelsius)},
"fromC" => {Some(Function::FromCelsius)},
"fromcelsius" => {Some(Function::FromCelsius)},
"fromCelsius" => {Some(Function::FromCelsius)},
"toFahrenheit" => {Some(Function::ToFahrenheit)},
"tofahrenheit" => {Some(Function::ToFahrenheit)},
"toF" => {Some(Function::ToFahrenheit)},
"fromF" => {Some(Function::FromFahrenheit)},
"fromfahrenheit" => {Some(Function::FromFahrenheit)},
"fromFahrenheit" => {Some(Function::FromFahrenheit)},
_ => None
}