Skip to content

code typo: in functions code, 'fahrenheitToCelius' should be 'fahrenheitToCelsius'.  #12

@tharveypa

Description

@tharveypa

in functions code, 'fahrenheitToCelius' should be 'fahrenheitToCelsius'.

/**

  • Consumes a single temperature in Fahrenheit (a number) and converts to Celsius
  • using this formula:
  •  C = (F - 32) * 5/9
    

*/
export function fahrenheitToCelius(temperature: number): number {
return ((temperature - 32) * 5) / 9;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions