diff --git a/services/weather/preventative.js b/services/weather/preventative.js index 97d2aa9..0b5ace5 100644 --- a/services/weather/preventative.js +++ b/services/weather/preventative.js @@ -19,10 +19,10 @@ module.exports = () => let avg = 0 if (avgHigh > tooHotLimit) { avg = avgHigh - message = `This months average temperature ${Number.parseInt(avg)}F is higher than normal. This is a good opportunity raise awareness of the Utility Assistance Programs that are available.` + message = `This months average temperature ${Number.parseInt(avg)}F is higher than normal. This is a good opportunity to raise awareness of the Utility Assistance Programs that are available.` } else if (avgLow < tooColdLimit) { avg = avgLow - message = `This months average temperature ${Number.parseInt(avg)}F is lower than normal. This is a good opportunity raise awareness of the Utility Assistance Programs that are available.` + message = `This months average temperature ${Number.parseInt(avg)}F is lower than normal. This is a good opportunity to raise awareness of the Utility Assistance Programs that are available.` } else { avg = (avgHigh + avgLow) / 2 message = `This months average high ${Number.parseInt(avgHigh)}F and average low ${Number.parseInt(avgLow)}F are not expected to have a significant impact to utiliy bills.`