From 8e5b528ec01809e3f18b7ca0203f5c8463e57821 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 4 Jun 2016 20:22:26 +0100 Subject: [PATCH] Fix typos reported by Godo --- README.md | 2 +- chapters/folders.md | 2 +- chapters/nodes_items_crafting.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c465df6..8b62646 100644 --- a/README.md +++ b/README.md @@ -186,4 +186,4 @@ Replace spaces with underscores ( _ ) Please note that the above is a guideline on how to make good chapter, but isn't exhustive and there are many exceptions. The priority is explaining the concepts -to the reader efficiently and in a way which is understandably. +to the reader efficiently and in a way which is understandable. diff --git a/chapters/folders.md b/chapters/folders.md index 7c05c95..ea3877f 100644 --- a/chapters/folders.md +++ b/chapters/folders.md @@ -22,7 +22,7 @@ are placed. These folders need to be placed in a mod location such as minetest/mods. Mods can be grouped into mod packs which are explained below. A "mod name" is used to refer to a mod. Each mod should have a unique mod name, -which you can choose - a good mod name describes what the mod does. +which you can choose - a good mod name should describe what the mod does. Mod names can be made up of letters, numbers, or underscores. The folder a mod is in needs to be called the same as the mod name. diff --git a/chapters/nodes_items_crafting.md b/chapters/nodes_items_crafting.md index 13ead35..203f702 100644 --- a/chapters/nodes_items_crafting.md +++ b/chapters/nodes_items_crafting.md @@ -60,7 +60,7 @@ minetest.register_craftitem("mymod:diamond_fragments", { }) {% endhighlight %} -Item definitions like seen above are usually made up of a unique +Item definitions like the one seen above are usually made up of a unique [item string](#item-strings) and a definition table. The definition table contains attributes which affect the behaviour of the item.