diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-12-21 08:30:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-21 08:30:11 +0100 |
commit | 5ae6f060145e56f3d1ee4a65e82da5b6354c54f6 (patch) | |
tree | 5e2959e9155d7f3ed037757df697378d4675afb8 | |
parent | 49c558a693fd7f1008edbb53b2115806a2f9ea77 (diff) | |
parent | 7e7e9cd73a70fe40167c3db54f3f27fba3bb9ee1 (diff) |
Merge pull request #2386 from cshoredaniel/pr-uhttpd-spelling
luci-app-uhttpd: Correct spelling in two places
-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 |