From 4637ac0fbe6bf5372b9c75e826d1f300aa6b676d Mon Sep 17 00:00:00 2001 From: Samer Albahra Date: Sun, 20 May 2018 17:07:30 -0500 Subject: [PATCH] Fix the comment --- routes/weather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/weather.js b/routes/weather.js index 304565e..8569000 100755 --- a/routes/weather.js +++ b/routes/weather.js @@ -221,7 +221,7 @@ function getYesterdayWeatherData( location, callback ) { // Retrieve weather data from Open Weather Map function getOWMWeatherData( location, callback ) { - // Generate URL using The Weather Company API v1 in Imperial units + // Generate URL using OpenWeatherMap in Imperial units var OWM_API_KEY = process.env.OWM_API_KEY, forecastUrl = "http://api.openweathermap.org/data/2.5/forecast?appid=" + OWM_API_KEY + "&units=imperial&lat=" + location[ 0 ] + "&lon=" + location[ 1 ];