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:
parent
3c96053cb4
commit
7e7e9cd73a
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ function lhttp.validate(self, value, section)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if not (have_http_listener or have_https_listener) then
|
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
|
end
|
||||||
return DynamicList.validate(self, value, section)
|
return DynamicList.validate(self, value, section)
|
||||||
end
|
end
|
||||||
|
@ -78,7 +78,7 @@ function lhttps.validate(self, value, section)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if not (have_http_listener or have_https_listener) then
|
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
|
end
|
||||||
return DynamicList.validate(self, value, section)
|
return DynamicList.validate(self, value, section)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue