From: Daniel F. Dickinson Date: Fri, 21 Dec 2018 03:25:32 +0000 (-0500) Subject: luci-app-uhttpd: Correct spelling in two places X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=7e7e9cd73a70fe40167c3db54f3f27fba3bb9ee1;p=project%2Fluci.git 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 --- 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 883e1bb631..eadf9b5722 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