diff options
author | Kim Alvefur <zash@zash.se> | 2022-03-07 00:35:29 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-03-07 00:35:29 +0100 |
commit | c9e223e4f743ad488e8b1ad134f64496a898d512 (patch) | |
tree | 109a148c8e98415a3fb72522d3d7852dbbc4cab3 /util | |
parent | 43351d2b54f7d8451a0e1ada7a72514c1ae1e396 (diff) | |
download | prosody-c9e223e4f743ad488e8b1ad134f64496a898d512.tar.gz prosody-c9e223e4f743ad488e8b1ad134f64496a898d512.zip |
spelling: non-existing mistakes (thanks timeless)0.12.0
Diffstat (limited to 'util')
-rw-r--r-- | util/datamanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
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 |