aboutsummaryrefslogtreecommitdiff
path: root/builtin/common
diff options
context:
space:
mode:
authorAbdou-31 <abdou31.coding@gmail.com>2022-11-09 17:57:19 +0100
committerGitHub <noreply@github.com>2022-11-09 11:57:19 -0500
commitd1b80b462eaa74a8640cf132c21f74e4f924052a (patch)
treed5804214487f339643ab6cdf74fbd113cb02cb2b /builtin/common
parent6191bafcadc21277be5527ed1ac05f7902e710ad (diff)
downloadminetest-d1b80b462eaa74a8640cf132c21f74e4f924052a.tar.xz
Fix typos and en_US/en_GB inconsistency in various files (#12902)
Diffstat (limited to 'builtin/common')
-rw-r--r--builtin/common/filterlist.lua6
-rw-r--r--builtin/common/serialize.lua2
-rw-r--r--builtin/common/strict.lua2
-rw-r--r--builtin/common/vector.lua4
4 files changed, 7 insertions, 7 deletions
diff --git a/builtin/common/filterlist.lua b/builtin/common/filterlist.lua
index e30379f2f..092d19fbc 100644
--- a/builtin/common/filterlist.lua
+++ b/builtin/common/filterlist.lua
@@ -20,8 +20,8 @@
-- TODO code cleanup --
-- Generic implementation of a filter/sortable list --
-- Usage: --
--- Filterlist needs to be initialized on creation. To achieve this you need to --
--- pass following functions: --
+-- Filterlist needs to be initialized on creation. To achieve this you need --
+-- to pass following functions: --
-- raw_fct() (mandatory): --
-- function returning a table containing the elements to be filtered --
-- compare_fct(element1,element2) (mandatory): --
@@ -31,7 +31,7 @@
-- filter_fct(element,filtercriteria) (optional) --
-- function returning true/false if filtercriteria met to element --
-- fetch_param (optional) --
--- parameter passed to raw_fct to aquire correct raw data --
+-- parameter passed to raw_fct to acquire correct raw data --
-- --
--------------------------------------------------------------------------------
filterlist = {}
diff --git a/builtin/common/serialize.lua b/builtin/common/serialize.lua
index afa63b362..2ee2e5f02 100644
--- a/builtin/common/serialize.lua
+++ b/builtin/common/serialize.lua
@@ -8,7 +8,7 @@ local next, rawget, pairs, pcall, error, type, setfenv, loadstring
local table_concat, string_dump, string_format, string_match, math_huge
= table.concat, string.dump, string.format, string.match, math.huge
--- Recursively counts occurences of objects (non-primitives including strings) in a table.
+-- Recursively counts occurrences of objects (non-primitives including strings) in a table.
local function count_objects(value)
local counts = {}
if value == nil then
diff --git a/builtin/common/strict.lua b/builtin/common/strict.lua
index 936ebb37b..6a385fa80 100644
--- a/builtin/common/strict.lua
+++ b/builtin/common/strict.lua
@@ -10,7 +10,7 @@ end
local meta = {}
local declared = {}
--- Key is source file, line, and variable name; seperated by NULs
+-- Key is source file, line, and variable name; separated by NULs
local warned = {}
function meta:__newindex(name, value)
diff --git a/builtin/common/vector.lua b/builtin/common/vector.lua
index cebc99580..5ea527708 100644
--- a/builtin/common/vector.lua
+++ b/builtin/common/vector.lua
@@ -81,7 +81,7 @@ metatable.__eq = vector.equals
function vector.length(v)
return math.sqrt(v.x * v.x + v.y * v.y + v.z * v.z)
end
--- Note: we can not use __len because it is already used for primitive table length
+-- Note: we cannot use __len because it is already used for primitive table length
function vector.normalize(v)
local len = vector.length(v)
@@ -356,7 +356,7 @@ function vector.dir_to_rotation(forward, up)
-- Since vector.angle never returns a negative value or a value greater
-- than math.pi, rot.z has to be inverted sometimes.
- -- To determine wether this is the case, we rotate the up vector back around
+ -- To determine whether this is the case, we rotate the up vector back around
-- the forward vector and check if it worked out.
local back = vector.rotate_around_axis(up, forward, -rot.z)