diff --git a/README.md b/README.md
index 37f3f77..6ad99c6 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ Key | Values
--- | ------
`city` | `city name` or
`city name,state code` or
`city name,state code,country code`
`units` | `metric` or `imperial`
-`temperature` | `day` or `low-high`
+`temperature` | `day` or `low-high` or `high-low`
`location` | `show` or `hide`
## System Requirements
diff --git a/weather-cal.php b/weather-cal.php
index 1b22e05..811bd6b 100644
--- a/weather-cal.php
+++ b/weather-cal.php
@@ -92,6 +92,8 @@ function makeDescriptions($data) {
function displayTemp($temp, $display) {
if ($display == 'day') {
return round($temp['day']) . '°';
+ } else if ($display == 'high-low'){
+ return round($temp['max']) . '°/' . round($temp['min']) . '°';
} else {
return round($temp['min']) . '°/' . round($temp['max']) . '°';
}