aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-03-07 00:35:29 +0100
committerKim Alvefur <zash@zash.se>2022-03-07 00:35:29 +0100
commitc9e223e4f743ad488e8b1ad134f64496a898d512 (patch)
tree109a148c8e98415a3fb72522d3d7852dbbc4cab3
parent43351d2b54f7d8451a0e1ada7a72514c1ae1e396 (diff)
downloadprosody-0.12.0.tar.gz
prosody-0.12.0.zip
spelling: non-existing mistakes (thanks timeless)0.12.0
-rw-r--r--plugins/mod_disco.lua2
-rw-r--r--util/datamanager.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua
index a98fc7ac..79249c52 100644
--- a/plugins/mod_disco.lua
+++ b/plugins/mod_disco.lua
@@ -36,7 +36,7 @@ do -- validate disco_items
end
if module:get_host_type() == "local" then
- module:add_identity("server", "im", module:get_option_string("name", "Prosody")); -- FIXME should be in the non-existing mod_router
+ module:add_identity("server", "im", module:get_option_string("name", "Prosody")); -- FIXME should be in the nonexisting mod_router
end
module:add_feature("http://jabber.org/protocol/disco#info");
module:add_feature("http://jabber.org/protocol/disco#items");
diff --git a/util/datamanager.lua b/util/datamanager.lua
index 352e509f..c57f4a0e 100644
--- a/util/datamanager.lua
+++ b/util/datamanager.lua
@@ -222,7 +222,7 @@ local function store(username, host, datastore, data)
os_remove(getpath(username, host, datastore));
end
-- we write data even when we are deleting because lua doesn't have a
- -- platform independent way of checking for non-existing files
+ -- platform independent way of checking for nonexisting files
until ok;
return true;
end
@@ -290,7 +290,7 @@ local function list_store(username, host, datastore, data)
os_remove(getpath(username, host, datastore, "list"));
end
-- we write data even when we are deleting because lua doesn't have a
- -- platform independent way of checking for non-existing files
+ -- platform independent way of checking for nonexisting files
return true;
end