aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_message.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-02-04 01:51:25 +0100
committerKim Alvefur <zash@zash.se>2018-02-04 01:51:25 +0100
commit3ec060fc0c140fa5f7fb09b3d64d715559dd54be (patch)
tree284e796694d96d55a3f24db148b6f95290c768fe /plugins/mod_message.lua
parent6f6e04b6c6c9e934d2837c353aeccb0617c414e9 (diff)
downloadprosody-3ec060fc0c140fa5f7fb09b3d64d715559dd54be.tar.gz
prosody-3ec060fc0c140fa5f7fb09b3d64d715559dd54be.zip
Fix spelling throughout the codebase [codespell]
Diffstat (limited to 'plugins/mod_message.lua')
-rw-r--r--plugins/mod_message.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_message.lua b/plugins/mod_message.lua
index 0d370ec1..4b8154e0 100644
--- a/plugins/mod_message.lua
+++ b/plugins/mod_message.lua
@@ -63,7 +63,7 @@ local function process_to_bare(bare, origin, stanza)
end
module:hook("message/full", function(data)
- -- message to full JID recieved
+ -- message to full JID received
local origin, stanza = data.origin, data.stanza;
local session = full_sessions[stanza.attr.to];
@@ -75,7 +75,7 @@ module:hook("message/full", function(data)
end, -1);
module:hook("message/bare", function(data)
- -- message to bare JID recieved
+ -- message to bare JID received
local origin, stanza = data.origin, data.stanza;
return process_to_bare(stanza.attr.to or (origin.username..'@'..origin.host), origin, stanza);