spelling: non-existing mistakes (thanks timeless) 0.12.0
authorKim Alvefur <zash@zash.se>
Mon, 07 Mar 2022 00:35:29 +0100
changeset 12392 50fcd3879482
parent 12391 05c250fa335a
child 12393 b776e234bb85
child 12398 86d6b069b892
spelling: non-existing mistakes (thanks timeless)
plugins/mod_disco.lua
util/datamanager.lua
--- a/plugins/mod_disco.lua	Mon Mar 07 00:13:56 2022 +0100
+++ b/plugins/mod_disco.lua	Mon Mar 07 00:35:29 2022 +0100
@@ -36,7 +36,7 @@
 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");
--- a/util/datamanager.lua	Mon Mar 07 00:13:56 2022 +0100
+++ b/util/datamanager.lua	Mon Mar 07 00:35:29 2022 +0100
@@ -222,7 +222,7 @@
 			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 @@
 		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