diff options
author | Daniel F. Dickinson <cshored@thecshore.com> | 2018-12-20 22:25:32 -0500 |
---|---|---|
committer | Daniel F. Dickinson <cshored@thecshore.com> | 2018-12-20 22:25:32 -0500 |
commit | 7e7e9cd73a70fe40167c3db54f3f27fba3bb9ee1 (patch) | |
tree | 3d1d5776f0786ceeb574f3b1568488df816efbea /applications/luci-app-uhttpd | |
parent | 3c96053cb49f12bc9209d70e3434409b2a21df52 (diff) |
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>
Diffstat (limited to 'applications/luci-app-uhttpd')
-rw-r--r-- | applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua b/applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua index 883e1bb63..eadf9b572 100644 --- a/applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua +++ b/applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua @@ -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 |