diff --git a/server.js b/server.js index d19337d..4ae4df5 100644 --- a/server.js +++ b/server.js @@ -25,7 +25,7 @@ app.post('/', function (req, res) { if(weather.main == undefined){ res.render('index', {weather: null, error: 'Error, please try again'}); } else { - let weatherText = `It's ${weather.main.temp} degrees in ${weather.name}!`; + let weatherText = `It's ${weather.main.temp} degrees fahrenheit in ${weather.name}!`; res.render('index', {weather: weatherText, error: null}); } }