diff --git a/methods/celciusToFahrenheit.js b/methods/celciusToFahrenheit.js index f3c9a65..230ea6a 100644 --- a/methods/celciusToFahrenheit.js +++ b/methods/celciusToFahrenheit.js @@ -1,3 +1,3 @@ export default function celciusToFahrenheit(celcius) { - return Math.floor((celcius * 9) / 5 + 32); + return Math.floor((celcius * 9) / 5 + 32);//conversion formula of tempreture from celcius to Fahrenhiet }