aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-07-27 00:13:18 +0200
committerKim Alvefur <zash@zash.se>2021-07-27 00:13:18 +0200
commitc506269ff5656772fdf739c61bf1aceac4fe9060 (patch)
treee4cd04869d2730f975a5cd27fc5a9a08485390e6 /spec
parent9ced42c9fb1f8428fca87bfdf02472d72421e881 (diff)
downloadprosody-c506269ff5656772fdf739c61bf1aceac4fe9060.tar.gz
prosody-c506269ff5656772fdf739c61bf1aceac4fe9060.zip
Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check for typos.
Diffstat (limited to 'spec')
-rw-r--r--spec/scansion/mam_prefs_prep.scs2
-rw-r--r--spec/util_promise_spec.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/scansion/mam_prefs_prep.scs b/spec/scansion/mam_prefs_prep.scs
index 9589ec65..1175a6de 100644
--- a/spec/scansion/mam_prefs_prep.scs
+++ b/spec/scansion/mam_prefs_prep.scs
@@ -1,4 +1,4 @@
-# mod_mam shold apply JIDprep in prefs
+# mod_mam should apply JIDprep in prefs
[Client] Romeo
jid: romeo@localhost
diff --git a/spec/util_promise_spec.lua b/spec/util_promise_spec.lua
index 307c094a..67f33416 100644
--- a/spec/util_promise_spec.lua
+++ b/spec/util_promise_spec.lua
@@ -17,7 +17,7 @@ describe("util.promise", function ()
p:next(cb);
assert.spy(cb).was_called(1);
end);
- it("notifies on fulfilment of pending promises", function ()
+ it("notifies on fulfillment of pending promises", function ()
local r;
local p = promise.new(function (resolve)
r = resolve;