summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authoryangfl <yangfl@users.noreply.github.com>2018-08-18 12:21:21 +0800
committeryangfl <yangfl@users.noreply.github.com>2018-10-12 22:18:51 +0800
commitae8b68cfe85296eb37436621895cdddac66b3ca7 (patch)
treefbf307f80f01da10db8b348f452dcd0dd4cab320 /modules
parent641475ee5948cd5646ad3ee59b8c2f21f8c243b7 (diff)
treewide: Fix typos in UI strings
Signed-off-by: David Yang <mmyangfl@gmail.com>
Diffstat (limited to 'modules')
-rw-r--r--modules/luci-base/luasrc/template.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/luasrc/template.lua b/modules/luci-base/luasrc/template.lua
index 588028c2e..ed46f5075 100644
--- a/modules/luci-base/luasrc/template.lua
+++ b/modules/luci-base/luasrc/template.lua
@@ -95,6 +95,6 @@ function Template.render(self, scope)
local stat, err = util.copcall(self.template)
if not stat then
error("Failed to execute template '" .. self.name .. "'.\n" ..
- "A runtime error occured: " .. tostring(err or "(nil)"))
+ "A runtime error occurred: " .. tostring(err or "(nil)"))
end
end