diff options
author | Kim Alvefur <zash@zash.se> | 2018-02-04 01:51:25 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-02-04 01:51:25 +0100 |
commit | 3ec060fc0c140fa5f7fb09b3d64d715559dd54be (patch) | |
tree | 284e796694d96d55a3f24db148b6f95290c768fe /plugins/mod_presence.lua | |
parent | 6f6e04b6c6c9e934d2837c353aeccb0617c414e9 (diff) | |
download | prosody-3ec060fc0c140fa5f7fb09b3d64d715559dd54be.tar.gz prosody-3ec060fc0c140fa5f7fb09b3d64d715559dd54be.zip |
Fix spelling throughout the codebase [codespell]
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r-- | plugins/mod_presence.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 4bce745a..5056a3a3 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -253,7 +253,7 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b end local outbound_presence_handler = function(data) - -- outbound presence recieved + -- outbound presence received local origin, stanza = data.origin, data.stanza; local to = stanza.attr.to; @@ -281,7 +281,7 @@ module:hook("pre-presence/bare", outbound_presence_handler); module:hook("pre-presence/host", outbound_presence_handler); module:hook("presence/bare", function(data) - -- inbound presence to bare JID recieved + -- inbound presence to bare JID received local origin, stanza = data.origin, data.stanza; local to = stanza.attr.to; @@ -307,7 +307,7 @@ module:hook("presence/bare", function(data) return true; end); module:hook("presence/full", function(data) - -- inbound presence to full JID recieved + -- inbound presence to full JID received local origin, stanza = data.origin, data.stanza; local t = stanza.attr.type; |