diff options
author | Kim Alvefur <zash@zash.se> | 2022-03-07 00:13:56 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-03-07 00:13:56 +0100 |
commit | 43351d2b54f7d8451a0e1ada7a72514c1ae1e396 (patch) | |
tree | 69239d940028f6a8a29b1f6b0524d932d1553c7b /util/datamanager.lua | |
parent | ece896d2532cc91ea95c0194e3db439c364235eb (diff) | |
download | prosody-43351d2b54f7d8451a0e1ada7a72514c1ae1e396.tar.gz prosody-43351d2b54f7d8451a0e1ada7a72514c1ae1e396.zip |
Spelling: Fix various spelling mistakes (thanks timeless)
Words, sometimes I wonder how they even work
Maybe I missed something.
Diffstat (limited to 'util/datamanager.lua')
-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 b8829de1..352e509f 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-exisitng files + -- platform independent way of checking for non-existing 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-exisitng files + -- platform independent way of checking for non-existing files return true; end |