fix spacing

This commit is contained in:
Asartea 2022-11-19 15:09:51 +01:00
parent e94742d58c
commit 171ac956cf
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
const convertToCelsius = function(fahrenheit) {
return Math.round((fahrenheit - 32) * (5/9) * 10) / 10;
return Math.round((fahrenheit - 32) * (5/9) * 10) / 10;
};
const convertToFahrenheit = function(celsius) {