Spelling: Fix various spelling mistakes (thanks timeless)

Words, sometimes I wonder how they even work

Maybe I missed something.
This commit is contained in:
Kim Alvefur 2022-03-07 00:13:56 +01:00
parent ece896d253
commit 43351d2b54
18 changed files with 31 additions and 31 deletions

View file

@ -139,7 +139,7 @@ local function load_roster(username, host)
-- Due to map store use, we need to manually delete this entry -- Due to map store use, we need to manually delete this entry
log("debug", "Removing legacy 'pending' entry"); log("debug", "Removing legacy 'pending' entry");
if not save_roster(username, host, roster, "pending") then if not save_roster(username, host, roster, "pending") then
log("warn", "Could not remove legacy 'pendig' entry"); log("warn", "Could not remove legacy 'pending' entry");
end end
end end
if roster[jid] then if roster[jid] then

View file

@ -20,7 +20,7 @@ end
``` ```
Tab width is configurable in editors, so never assume a particular width. Tab width is configurable in editors, so never assume a particular width.
Specically this means you should not mix tabs and spaces, or use tabs for Specifically this means you should not mix tabs and spaces, or use tabs for
alignment of items at different indentation levels. alignment of items at different indentation levels.
* Use LF (Unix) line endings. * Use LF (Unix) line endings.

View file

@ -344,7 +344,7 @@ local function encodeHeader(o) -- - - - - - - - - - - - - - - encodeHeader
-- 4 not implemented -- 4 not implemented
-- 5 refused -- 5 refused
-- 6-15 reserved -- 6-15 reserved
o.z = o.z or 0; -- 3b 0 resvered o.z = o.z or 0; -- 3b 0 reserved
o.ra = o.ra or 0; -- 1b 1 recursion available o.ra = o.ra or 0; -- 1b 1 recursion available
o.qdcount = o.qdcount or 1; -- 16b number of question RRs o.qdcount = o.qdcount or 1; -- 16b number of question RRs

View file

@ -262,7 +262,7 @@ end
--TODO: Deprecate --TODO: Deprecate
function interface_mt:lock_read(switch) function interface_mt:lock_read(switch)
log("warn", ":lock_read is deprecated, use :pasue() and :resume()"); log("warn", ":lock_read is deprecated, use :pause() and :resume()");
if switch then if switch then
return self:pause(); return self:pause();
else else
@ -540,7 +540,7 @@ local function handleclient( client, ip, port, server, pattern, listener, sslctx
--vdebug( "tried to read in writecallback, result:", ret ) --vdebug( "tried to read in writecallback, result:", ret )
end end
if interface.eventwritetimeout then -- luasec only if interface.eventwritetimeout then -- luasec only
interface.eventwritetimeout:close( ) -- first we have to close timeout event which where regged after a wantread error interface.eventwritetimeout:close( ) -- first we have to close timeout event which where registered after a wantread error
interface.eventwritetimeout = false interface.eventwritetimeout = false
end end
end end
@ -607,7 +607,7 @@ local function handleclient( client, ip, port, server, pattern, listener, sslctx
return -1 -- took too long to get some data from client -> disconnect return -1 -- took too long to get some data from client -> disconnect
end end
if interface._usingssl then -- handle luasec if interface._usingssl then -- handle luasec
if interface.eventwritetimeout then -- ok, in the past writecallback was regged if interface.eventwritetimeout then -- ok, in the past writecallback was registered
local ret = interface.writecallback( ) -- call it local ret = interface.writecallback( ) -- call it
--vdebug( "tried to write in readcallback, result:", tostring(ret) ) --vdebug( "tried to write in readcallback, result:", tostring(ret) )
end end

View file

@ -91,7 +91,7 @@ end, 500);
local function adhoc_added(event) local function adhoc_added(event)
local item = event.item; local item = event.item;
-- Dang this was noicy -- Dang this was noisy
module:log("debug", "Command added by mod_%s: %q, %q", item._provided_by or "<unknown module>", item.name, item.node); module:log("debug", "Command added by mod_%s: %q, %q", item._provided_by or "<unknown module>", item.name, item.node);
commands[item.node] = item; commands[item.node] = item;
end end

View file

@ -75,12 +75,12 @@ function serve(opts)
opts.index_files = dir_indices; opts.index_files = dir_indices;
end end
-- TODO Crank up to warning -- TODO Crank up to warning
module:log("debug", "%s should be updated to use 'net.http.files' insead of mod_http_files", get_calling_module()); module:log("debug", "%s should be updated to use 'net.http.files' instead of mod_http_files", get_calling_module());
return fileserver.serve(opts); return fileserver.serve(opts);
end end
function wrap_route(routes) function wrap_route(routes)
module:log("debug", "%s should be updated to use 'net.http.files' insead of mod_http_files", get_calling_module()); module:log("debug", "%s should be updated to use 'net.http.files' instead of mod_http_files", get_calling_module());
for route,handler in pairs(routes) do for route,handler in pairs(routes) do
if type(handler) ~= "function" then if type(handler) ~= "function" then
routes[route] = fileserver.serve(handler); routes[route] = fileserver.serve(handler);

View file

@ -20,8 +20,8 @@
"backslash": "\\", "backslash": "\\",
"controls": "\b\f\n\r\t", "controls": "\b\f\n\r\t",
"slash": "/ & \/", "slash": "/ & \/",
"alpha": "abcdefghijklmnopqrstuvwyz", "alpha": "abcdefghijklmnopqrstuvwxyz",
"ALPHA": "ABCDEFGHIJKLMNOPQRSTUVWYZ", "ALPHA": "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
"digit": "0123456789", "digit": "0123456789",
"0123456789": "digit", "0123456789": "digit",
"special": "`1~!@#$%^&*()_+-={':[,]}|;.</>?", "special": "`1~!@#$%^&*()_+-={':[,]}|;.</>?",

View file

@ -452,14 +452,14 @@ describe("util.dataforms", function ()
assert.string(e.number); assert.string(e.number);
end); end);
it("bounds-cheking work works", function () it("bounds-checking work works", function ()
local d,e = f:data(f:form({number = 100})); local d,e = f:data(f:form({number = 100}));
assert.not_equal(100, d.number); assert.not_equal(100, d.number);
assert.table(e); assert.table(e);
assert.string(e.number); assert.string(e.number);
end); end);
it("serializes largeer ints okay", function () it("serializes larger ints okay", function ()
local x = f:form{number=1125899906842624} local x = f:form{number=1125899906842624}
assert.equal("1125899906842624", x:find("field/value#")) assert.equal("1125899906842624", x:find("field/value#"))
end); end);

View file

@ -19,7 +19,7 @@ local record lib
length : function (s : string) : integer length : function (s : string) : integer
end end
record confusable record confusable
skeleteon : function (s : string) : string skeleton : function (s : string) : string
end end
version : string version : string
end end

View file

@ -187,7 +187,7 @@ function muc_room(node, host, properties)
for _,aff in ipairs(properties.affiliations) do for _,aff in ipairs(properties.affiliations) do
store._affiliations[build_jid(aff[1])] = aff[2][1] or aff[2]; store._affiliations[build_jid(aff[1])] = aff[2][1] or aff[2];
end end
-- destructre ejabberd's subject datum (e.g. [{text,<<>>,<<"my room subject">>}] ) -- destructure ejabberd's subject datum (e.g. [{text,<<>>,<<"my room subject">>}] )
store._data.subject = properties.subject[1][3]; store._data.subject = properties.subject[1][3];
if properties.subject_author then if properties.subject_author then
store._data.subject_from = store.jid .. "/" .. properties.subject_author; store._data.subject_from = store.jid .. "/" .. properties.subject_author;

View file

@ -38,7 +38,7 @@ local function usage()
print("Usage: " .. arg[0] .. " [OPTIONS] FROM_STORE TO_STORE"); print("Usage: " .. arg[0] .. " [OPTIONS] FROM_STORE TO_STORE");
print(" --config FILE Specify config file") print(" --config FILE Specify config file")
print(" --keep-going Keep going in case of errors"); print(" --keep-going Keep going in case of errors");
print(" -v, --verbose Incease log-level"); print(" -v, --verbose Increase log-level");
print(""); print("");
print("If no stores are specified, 'input' and 'output' are used."); print("If no stores are specified, 'input' and 'output' are used.");
end end
@ -153,7 +153,7 @@ local function users(store, host)
log("debug", "Using store user iterator") log("debug", "Using store user iterator")
return store:users(); return store:users();
else else
log("debug", "Using usermanagre user iterator") log("debug", "Using usermanager user iterator")
return um.users(host); return um.users(host);
end end
end end

View file

@ -10,7 +10,7 @@
** > - big endian ** > - big endian
** < - little endian ** < - little endian
** ![num] - alignment ** ![num] - alignment
** x - pading ** x - padding
** b/B - signed/unsigned byte ** b/B - signed/unsigned byte
** h/H - signed/unsigned short ** h/H - signed/unsigned short
** l/L - signed/unsigned long ** l/L - signed/unsigned long

View file

@ -222,7 +222,7 @@ local function store(username, host, datastore, data)
os_remove(getpath(username, host, datastore)); os_remove(getpath(username, host, datastore));
end end
-- we write data even when we are deleting because lua doesn't have a -- we write data even when we are deleting because lua doesn't have a
-- platform independent way of checking for non-exisitng files -- platform independent way of checking for non-existing files
until ok; until ok;
return true; return true;
end end
@ -290,7 +290,7 @@ local function list_store(username, host, datastore, data)
os_remove(getpath(username, host, datastore, "list")); os_remove(getpath(username, host, datastore, "list"));
end end
-- we write data even when we are deleting because lua doesn't have a -- we write data even when we are deleting because lua doesn't have a
-- platform independent way of checking for non-exisitng files -- platform independent way of checking for non-existing files
return true; return true;
end end

View file

@ -10,7 +10,7 @@ The following metric types are supported:
- Histogram - Histogram
- Summary - Summary
It is used by util.statsd and util.statistics to provite the OpenMetrics API. It is used by util.statsd and util.statistics to provide the OpenMetrics API.
To understand what this module is about, it is useful to familiarize oneself To understand what this module is about, it is useful to familiarize oneself
with the terms MetricFamily, Metric, LabelSet, Label and MetricPoint as with the terms MetricFamily, Metric, LabelSet, Label and MetricPoint as

View file

@ -12,7 +12,7 @@ local lua_version = _VERSION:match(" (.+)$");
local plugin_dir = {}; local plugin_dir = {};
for path in (CFG_PLUGINDIR or "./plugins/"):gsub("[/\\]", dir_sep):gmatch("[^"..path_sep.."]+") do for path in (CFG_PLUGINDIR or "./plugins/"):gsub("[/\\]", dir_sep):gmatch("[^"..path_sep.."]+") do
path = path..dir_sep; -- add path separator to path end path = path..dir_sep; -- add path separator to path end
path = path:gsub(dir_sep..dir_sep.."+", dir_sep); -- coalesce multiple separaters path = path:gsub(dir_sep..dir_sep.."+", dir_sep); -- coalesce multiple separators
plugin_dir[#plugin_dir + 1] = path; plugin_dir[#plugin_dir + 1] = path;
end end

View file

@ -237,7 +237,7 @@ function cert_commands.import(arg)
for _, host in ipairs(hostnames) do for _, host in ipairs(hostnames) do
local paths = cm.find_cert_in_index(files_by_name, host); local paths = cm.find_cert_in_index(files_by_name, host);
if paths and imported[paths.certificate] then if paths and imported[paths.certificate] then
-- One certificate, many mames! -- One certificate, many names!
table.insert(imported, host); table.insert(imported, host);
elseif paths then elseif paths then
local c = copy(paths.certificate, cert_basedir .. "/" .. host .. ".crt", nil, owner, group); local c = copy(paths.certificate, cert_basedir .. "/" .. host .. ".crt", nil, owner, group);

View file

@ -47,7 +47,7 @@ local registered_mechanisms = {};
local backend_mechanism = {}; local backend_mechanism = {};
local mechanism_channelbindings = {}; local mechanism_channelbindings = {};
-- register a new SASL mechanims -- register a new SASL mechanisms
local function registerMechanism(name, backends, f, cb_backends) local function registerMechanism(name, backends, f, cb_backends)
assert(type(name) == "string", "Parameter name MUST be a string."); assert(type(name) == "string", "Parameter name MUST be a string.");
assert(type(backends) == "string" or type(backends) == "table", "Parameter backends MUST be either a string or a table."); assert(type(backends) == "string" or type(backends) == "table", "Parameter backends MUST be either a string or a table.");
@ -97,7 +97,7 @@ function method:clean_clone()
return new(self.realm, self.profile) return new(self.realm, self.profile)
end end
-- get a list of possible SASL mechanims to use -- get a list of possible SASL mechanisms to use
function method:mechanisms() function method:mechanisms()
local current_mechs = {}; local current_mechs = {};
for mech, _ in pairs(self.mechs) do for mech, _ in pairs(self.mechs) do

View file

@ -85,7 +85,7 @@ local histogram_metric_mt = {}
histogram_metric_mt.__index = histogram_metric_mt histogram_metric_mt.__index = histogram_metric_mt
local function new_histogram_metric(buckets, full_name, impl) local function new_histogram_metric(buckets, full_name, impl)
-- NOTE: even though the more or less proprietrary dogstatsd has its own -- NOTE: even though the more or less proprietary dogstatsd has Its own
-- histogram implementation, we push the individual buckets in this statsd -- histogram implementation, we push the individual buckets in this statsd
-- backend for both consistency and compatibility across statsd -- backend for both consistency and compatibility across statsd
-- implementations. -- implementations.