in functions code, 'fahrenheitToCelius' should be 'fahrenheitToCelsius'.
/**
- Consumes a single temperature in Fahrenheit (a number) and converts to Celsius
- using this formula:
-
*/
export function fahrenheitToCelius(temperature: number): number {
return ((temperature - 32) * 5) / 9;
}