Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PMByrne committed Oct 23, 2016
1 parent fc9d8c6 commit 737b5c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/weather/preventative.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.`
Expand Down

0 comments on commit 737b5c4

Please sign in to comment.