Merge pull request #2386 from cshoredaniel/pr-uhttpd-spelling

luci-app-uhttpd: Correct spelling in two places
This commit is contained in:
Jo-Philipp Wich 2018-12-21 08:30:11 +01:00 committed by GitHub
commit 5ae6f06014
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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