luci-app-uhttpd: Correct spelling in two places 2386/head
authorDaniel F. Dickinson <cshored@thecshore.com>
Fri, 21 Dec 2018 03:25:32 +0000 (22:25 -0500)
committerDaniel F. Dickinson <cshored@thecshore.com>
Fri, 21 Dec 2018 03:25:32 +0000 (22:25 -0500)
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>
applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua

index 883e1bb631b1840c4eb99c21a5ad233e9dcb26ff..eadf9b57226546da8b02efb79037e07fdd86ef79 100644 (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