summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.lua b/init.lua
index ab58d7d..54d3f85 100644
--- a/init.lua
+++ b/init.lua
@@ -228,11 +228,11 @@ doc.new_category("nodes", {
end
if data.def.groups.choppy == 1 then
- formstring = formstring .. "This block is a bit choppy and can be dug by an axe and other tools which involve brute force.\n"
+ formstring = formstring .. "This block is a bit choppy and can be dug by axes and other tools which involve brute force.\n"
elseif data.def.groups.choppy == 2 then
- formstring = formstring .. "This block is choppy and can be dug by an axe and other tools which involve brute force.\n"
+ formstring = formstring .. "This block is choppy and can be dug by axes and other tools which involve brute force.\n"
elseif data.def.groups.choppy == 3 then
- formstring = formstring .. "This block is highly choppy and can easily be dug by and axe and other tools which involve brute force.\n"
+ formstring = formstring .. "This block is highly choppy and can easily be dug by axes and other tools which involve brute force.\n"
elseif data.def.groups.choppy ~= nil then
formstring = formstring .. "This block is choppy to some extent and can be dug by axes and similar tools.\n"
end