summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorWuzzy <almikes@aol.com>2016-08-17 11:29:15 +0200
committerWuzzy <almikes@aol.com>2016-08-17 11:29:15 +0200
commit9379f4a0857bc0f336b6f1e25e3bf700d5f38731 (patch)
tree9d5edcdef76fa0809132ffaff0bc51438bc718ee /init.lua
parente59c589ff238a92531bb7a3fdfdda9d2f64d9d95 (diff)
Fix missing closing bracket
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index 309a9ed..a193b73 100644
--- a/init.lua
+++ b/init.lua
@@ -526,7 +526,7 @@ doc.new_category("nodes", {
local desc = get_desc(dropstack)
local count = dropstack:get_count()
if count ~= 1 then
- desc = desc .. "(×"..count
+ desc = desc .. "(×"..count..")"
end
formstring = formstring .. desc
icount = icount + 1