diff options
author | Balázs Úr <balazs@urbalazs.hu> | 2019-12-17 11:41:00 +0100 |
---|---|---|
committer | Balázs Úr <balazs@urbalazs.hu> | 2019-12-17 11:41:00 +0100 |
commit | d0bc86bcc3fc0c6668e04601344daa956cea2b32 (patch) | |
tree | 7efbc33c51ad4f22f9338811da80a7a8c12d148f /modules/luci-base/htdocs/luci-static/resources/protocol | |
parent | fc35802ff993102fafbf93694a6e1cb5c5447b02 (diff) |
luci-base: fix typos
Signed-off-by: Balázs Úr <balazs@urbalazs.hu>
Diffstat (limited to 'modules/luci-base/htdocs/luci-static/resources/protocol')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/protocol/static.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/protocol/static.js b/modules/luci-base/htdocs/luci-static/resources/protocol/static.js index 9039acd5f3..2d70ae681f 100644 --- a/modules/luci-base/htdocs/luci-static/resources/protocol/static.js +++ b/modules/luci-base/htdocs/luci-static/resources/protocol/static.js @@ -195,7 +195,7 @@ return network.registerProtocol('static', { var n = parseInt(value, 16); if (!/^(0x)?[0-9a-fA-F]+$/.test(value) || isNaN(n) || n >= 0xffffffff) - return _('Expecting an hexadecimal assignment hint'); + return _('Expecting a hexadecimal assignment hint'); return true; }; |