Skip to content

Commit 944ffe9

Browse files
rubenwardysapier
authored and
sapier
committedAug 22, 2014
Correct spelling mistakes in documentation
1 parent 7993696 commit 944ffe9

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed
 

‎doc/README.android

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ When a menu or inventory is displayed:
3333

3434
Special settings
3535
----------------
36-
There are some settings esspecially usefull for Android users. Minetest's config
36+
There are some settings especially useful for Android users. Minetest's config
3737
file can usually be found at /mnt/sdcard/Minetest.
3838

3939
* gui_scaling: this is a user-specified scaling factor for the GUI- In case
40-
main menu is to big or small on your device, try changing this
40+
main menu is too big or small on your device, try changing this
4141
value.
4242
* inventory_image_hack: if your inventory items are messed up, try setting
4343
this to true
@@ -58,7 +58,7 @@ number of Android's version represents the Android internal version code. This
5858
version code is strictly incremental. It's incremented for each official
5959
Minetest Android build.
6060

61-
E.g. pre-release Minetest Android builds have been 0.4.9.3, while the first
61+
E.g. prerelease Minetest Android builds have been 0.4.9.3, while the first
6262
official version most likely will be 0.4.10.4
6363

6464
Requirements
@@ -105,7 +105,7 @@ Release build:
105105

106106
* Execute "make release"
107107
* Enter your keystore as well as your Mintest key password once asked. Be
108-
carefull it's shown on console in clear text!
108+
careful it's shown on console in clear text!
109109
* The result can be found at "bin/Minetest-release.apk"
110110

111111
Other things that may be nice to know

‎doc/fst_api.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ methods:
6262
on_change = function(type,old_tab,new_tab) -- called on tab chang, type is "ENTER" or "LEAVE"
6363
}
6464
- set_autosave_tab(value)
65-
^ tell tabview to automaticaly save current tabname as "tabview_name"_LAST
65+
^ tell tabview to automatically save current tabname as "tabview_name"_LAST
6666
^ value: true/false
6767
- set_tab(name)
6868
^ set's tab to tab named "name", returns true/false on success
@@ -160,7 +160,7 @@ Skeleton for any component:
160160
{
161161
name = "some id", -- unique id
162162
type = "toplevel", -- type of component
163-
-- toplevel: componant can be show without additional components
163+
-- toplevel: component can be show without additional components
164164
-- addon: component is an addon to be shown along toplevel component
165165
hide = function(this) end, -- called to hide the component
166166
show = function(this) end, -- called to show the component

‎doc/lua_api.txt

+12-12
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Advanced texture modifiers:
211211
[combine:<w>x<h>:<x1>,<y1>=<file1>:<x2>,<y2>=<file2>
212212
w = width, h = height, x1/x2 = x position, y1/y1 = y position,
213213
file1/file2 = texture to combine
214-
Create a textue of size <w> x <h> and blit <file1> to (<x1>,<y1>)
214+
Create a texture of size <w> x <h> and blit <file1> to (<x1>,<y1>)
215215
and blit <file2> to (<x2>,<y2>).
216216
Example: [combine:16x32:0,0=default_cobble.png:0,16=default_wood.png
217217

@@ -220,7 +220,7 @@ Advanced texture modifiers:
220220
Example: tnt_tnt_side.png^[brighten
221221

222222
[noalpha
223-
Makes the texture completly opaque.
223+
Makes the texture completely opaque.
224224
Example: default_leaves.png^[noalpha
225225

226226
[makealpha:<r>,<g>,<b>
@@ -466,13 +466,13 @@ All default ores are of the uniformly-distributed scatter type.
466466
- scatter
467467
Randomly chooses a location and generates a cluster of ore.
468468
If noise_params is specified, the ore will be placed if the 3d perlin noise at
469-
that point is greater than the noise_threshhold, giving the ability to create a non-equal
469+
that point is greater than the noise_threshold, giving the ability to create a non-equal
470470
distribution of ore.
471471
- sheet
472472
Creates a sheet of ore in a blob shape according to the 2d perlin noise described by noise_params.
473473
The relative height of the sheet can be controlled by the same perlin noise as well, by specifying
474474
a non-zero 'scale' parameter in noise_params. IMPORTANT: The noise is not transformed by offset or
475-
scale when comparing against the noise threshhold, but scale is used to determine relative height.
475+
scale when comparing against the noise threshold, but scale is used to determine relative height.
476476
The height of the blob is randomly scattered, with a maximum height of clust_size.
477477
clust_scarcity and clust_num_ores are ignored.
478478
This is essentially an improved version of the so-called "stratus" ore seen in some unofficial mods.
@@ -841,7 +841,7 @@ tool_capabilities = {
841841
damage_groups = {fleshy=2},
842842
}
843843

844-
This makes the tool be able to dig nodes that fulfill both of these:
844+
This makes the tool be able to dig nodes that fulfil both of these:
845845
- Have the **crumbly** group
846846
- Have a **level** group less or equal to 2
847847

@@ -1119,7 +1119,7 @@ textlist[<X>,<Y>;<W>,<H>;<name>;<listelem 1>,<listelem 2>,...,<listelem n>;<sele
11191119
tabheader[<X>,<Y>;<name>;<caption 1>,<caption 2>,...,<caption n>;<current_tab>;<transparent>;<draw_border>]
11201120
^ show a tabHEADER at specific position (ignores formsize)
11211121
^ x and y position the itemlist relative to the top left of the menu
1122-
^ name fieldname data is transfered to Lua
1122+
^ name fieldname data is transferred to Lua
11231123
^ caption 1... name shown on top of tab
11241124
^ current_tab index of selected tab 1...
11251125
^ transparent (optional) show transparent
@@ -1138,14 +1138,14 @@ dropdown[<X>,<Y>;<W>;<name>;<item 1>,<item 2>, ...,<item n>;<selected idx>]
11381138
^ 2) read the value on pressing a button (all dropdown values are available)
11391139
^ x and y position of dropdown
11401140
^ width of dropdown
1141-
^ fieldname data is transfered to Lua
1141+
^ fieldname data is transferred to Lua
11421142
^ items to be shown in dropdown
11431143
^ index of currently selected dropdown item
11441144

11451145
checkbox[<X>,<Y>;<name>;<label>;<selected>;<tooltip>]
11461146
^ show a checkbox
11471147
^ x and y position of checkbox
1148-
^ name fieldname data is transfered to Lua
1148+
^ name fieldname data is transferred to Lua
11491149
^ label to be shown left of checkbox
11501150
^ selected (optional) true/false
11511151
^ tooltip (optional)
@@ -1158,7 +1158,7 @@ scrollbar[<X>,<Y>;<W>,<H>;<orientation>;<name>;<value>]
11581158
^ x and y position of trackbar
11591159
^ width and height
11601160
^ orientation vertical/horizontal
1161-
^ fieldname data is transfered to lua
1161+
^ fieldname data is transferred to lua
11621162
^ value this trackbar is set to (0-1000)
11631163
^ see also minetest.explode_scrollbar_event (main menu: engine.explode_scrollbar_event)
11641164

@@ -1742,7 +1742,7 @@ minetest.parse_json(string[, nullvalue]) -> something
17421742
minetest.write_json(data[, styled]) -> string or nil and error message
17431743
^ Convert a Lua table into a JSON string
17441744
^ styled: Outputs in a human-readable format if this is set, defaults to false
1745-
^ Un-serializable things like functions and userdata are saved as null.
1745+
^ Unserializable things like functions and userdata are saved as null.
17461746
^ Warning: JSON is more strict than the Lua table format.
17471747
1. You can only use strings and positive integers of at least one as keys.
17481748
2. You can not mix string and integer keys.
@@ -2084,7 +2084,7 @@ methods:
20842084
^ To be used only by a VoxelManip object from minetest.get_mapgen_object
20852085
^ (p1, p2) is the area in which lighting is set; defaults to the whole area if left out
20862086
- get_light_data(): Gets the light data read into the VoxelManip object
2087-
^ Returns an array (indicies 1 to volume) of integers ranging from 0 to 255
2087+
^ Returns an array (indices 1 to volume) of integers ranging from 0 to 255
20882088
^ Each value is the bitwise combination of day and night light values (0..15 each)
20892089
^ light = day + (night * 16)
20902090
- set_light_data(light_data): Sets the param1 (light) contents of each node in the VoxelManip
@@ -2566,7 +2566,7 @@ Ore definition (register_ore)
25662566
flags = "",
25672567
^ Attributes for this ore generation
25682568
noise_threshhold = 0.5,
2569-
^ If noise is above this threshhold, ore is placed. Not needed for a uniform distribution
2569+
^ If noise is above this threshold, ore is placed. Not needed for a uniform distribution
25702570
noise_params = {offset=0, scale=1, spread={x=100, y=100, z=100}, seed=23, octaves=3, persist=0.70}
25712571
^ NoiseParams structure describing the perlin noise used for ore distribution.
25722572
^ Needed for sheet ore_type. Omit from scatter ore_type for a uniform ore distribution

‎doc/mapformat.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ that part. So, this is where it has come.
192192

193193
So here goes
194194
-------------
195-
map.sqlite is an sqlite3 database, containg a single table, called
195+
map.sqlite is an sqlite3 database, containing a single table, called
196196
"blocks". It looks like this:
197197

198198
CREATE TABLE `blocks` (`pos` INT NOT NULL PRIMARY KEY,`data` BLOB);

0 commit comments

Comments
 (0)
Please sign in to comment.