From 9d9a5d2b144f7c38386c28b702236c854163a75e Mon Sep 17 00:00:00 2001 From: yzenati <9922120+yzenati@users.noreply.github.com> Date: Fri, 16 Oct 2020 12:41:02 +0200 Subject: [PATCH] Correct the comment of the curl command --- scripts/weather.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/weather.sh b/scripts/weather.sh index 580b359..c8e3ad9 100755 --- a/scripts/weather.sh +++ b/scripts/weather.sh @@ -17,7 +17,7 @@ display_location() fetch_weather_information() { display_weather=$1 - # it gets the weather condition textual name (%C), the temperature (%t), and the location (%l) + # it gets the weather condition textual name (%C), and the temperature (%t) curl -sL wttr.in\?format="+%C+%t$display_weather" }