forgor to make the location greedy

This commit is contained in:
Chayapak 2023-04-05 11:25:52 +07:00
parent 96c11f3291
commit 4b7a1bb595

View file

@ -29,7 +29,7 @@ public class WeatherCommand implements Command {
public List<String> usage() {
final List<String> usages = new ArrayList<>();
usages.add("<location>");
usages.add("<{location}>");
return usages;
}