# HG changeset patch # User Seve Ferrer # Date 1628759143 -7200 # Node ID df09f9ce0b1b9a0a8367e6d80883753706d24ddb # Parent 9fc52ccfb445dbf63ecf4f3079981f61bb79c48b mod_http_muc_kick: Fix typo diff -r 9fc52ccfb445 -r df09f9ce0b1b mod_http_muc_kick/mod_http_muc_kick.lua --- a/mod_http_muc_kick/mod_http_muc_kick.lua Tue Aug 10 13:27:16 2021 +0200 +++ b/mod_http_muc_kick/mod_http_muc_kick.lua Thu Aug 12 11:05:43 2021 +0200 @@ -78,7 +78,7 @@ -- https://xmpp.org/extensions/xep-0045.html#kick local success, error, condition = muc:set_role(true, occupant_jid, nil, reason); if not success then - return handle_error(response, 400, "Coudln't kick user: ".. error .. ": " .. condition); + return handle_error(response, 400, "Couldn't kick user: ".. error .. ": " .. condition); end -- Kick was successful