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 | b1235c60a71fe55ac329580a6792e04fba9a4d04 (patch) | |
tree | 284e796694d96d55a3f24db148b6f95290c768fe /plugins/mod_presence.lua | |
parent | 78c3f2328fd098579c036a5fc8b0cb5bf6fdc633 (diff) | |
download | prosody-b1235c60a71fe55ac329580a6792e04fba9a4d04.tar.gz prosody-b1235c60a71fe55ac329580a6792e04fba9a4d04.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; |