diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-10-10 20:25:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-10 20:25:11 +0300 |
commit | 67fd6b6e5ea6b843a4427bed62a31e96f3ff0a1f (patch) | |
tree | 09689cc4f3b1194012f0e0830a49692cdd6fd1d8 /applications/luci-app-privoxy | |
parent | a9948891a8d0262e88e43472c13fdb0d3ba9c72b (diff) | |
parent | 401382a459743db941738a645822b443ecfdc596 (diff) |
Merge pull request #2197 from yangfl/master
treewide: Fix typos in comments
Diffstat (limited to 'applications/luci-app-privoxy')
-rw-r--r-- | applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua b/applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua index 90754c2bc1..722af19e21 100644 --- a/applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua +++ b/applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua @@ -544,7 +544,7 @@ function bl.validate(self, value) elseif v < 1 or v > 4096 then return nil, err_tab_access(self.title_base, translate("Value not between 1 and 4096") ) elseif v == self.default then - return "" -- dont need to save default + return "" -- don't need to save default end return value end @@ -721,7 +721,7 @@ function st.validate(self, value) elseif v < 1 then return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") ) elseif v == self.default then - return "" -- dont need to save default + return "" -- don't need to save default end return value end @@ -740,7 +740,7 @@ function mcc.validate(self, value) elseif v < 1 then return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") ) elseif v == self.default then - return "" -- dont need to save default + return "" -- don't need to save default end return value end |