-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix typo #101
fix typo #101
Conversation
src/utils/format.ts
Outdated
export const convertFahrenheitToCelcius = (temp: number): string => { | ||
const formattedCelciusTemp = decimalFormat((temp - 32) * (5 / 9)); | ||
return formattedCelciusTemp; | ||
export const convertFahrenheitTosius = (temp: number): string => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo here, should be I think convertFahrenheitToCelsius
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is weird, this didn't comeup when I searched for celcius ... it seems the search was case sensitive... let me correct this...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ahh I think I omitted out 'Cel' ... :P
Is there a way to deploy this on dev so we can verify the fix? |
This change looks good, but it would be good to test it out on dev before we merge and make a new release. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
Fixes typo in the word
Celsius