luci-app-uhttpd: Correct spelling in two places

Had 'at list' instead 'at least' for the help text on listing
HTTP/HTTPS listening addresses.

Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
This commit is contained in:
Daniel F. Dickinson 2018-12-20 22:25:32 -05:00
parent 3c96053cb4
commit 7e7e9cd73a

View file

@ -42,7 +42,7 @@ function lhttp.validate(self, value, section)
end
end
if not (have_http_listener or have_https_listener) then
return nil, "must listen on at list one address:port"
return nil, "must listen on at least one address:port"
end
return DynamicList.validate(self, value, section)
end
@ -78,7 +78,7 @@ function lhttps.validate(self, value, section)
end
end
if not (have_http_listener or have_https_listener) then
return nil, "must listen on at list one address:port"
return nil, "must listen on at least one address:port"
end
return DynamicList.validate(self, value, section)
end