Merge pull request #2386 from cshoredaniel/pr-uhttpd-spelling
luci-app-uhttpd: Correct spelling in two places
This commit is contained in:
commit
5ae6f06014
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