Put space between temperature and unit
This commit is contained in:
parent
f4ab4efa1d
commit
2b4a8029d1
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ module.exports = {
|
||||||
fahrenheit = fahrenheit.replace(".00","")
|
fahrenheit = fahrenheit.replace(".00","")
|
||||||
}
|
}
|
||||||
|
|
||||||
sendText = `${initial_number}°C is ${fahrenheit}°F`;
|
sendText = `${initial_number} °C is ${fahrenheit} °F`;
|
||||||
} else {
|
} else {
|
||||||
sendText = "Can only convert to celsius from fahrenheit";
|
sendText = "Can only convert to celsius from fahrenheit";
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ module.exports = {
|
||||||
celsius = celsius.replace(".00","")
|
celsius = celsius.replace(".00","")
|
||||||
}
|
}
|
||||||
|
|
||||||
sendText = `${initial_number}°F is ${celsius}°C`;
|
sendText = `${initial_number} °F is ${celsius} °C`;
|
||||||
} else {
|
} else {
|
||||||
sendText = "Can only convert to fahrenheit from celsius";
|
sendText = "Can only convert to fahrenheit from celsius";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue