util.sasl: Fix a singulars

Thanks timeless, your mere existence inspires us to improve our
spelling, tho this was more syntax.
This commit is contained in:
Kim Alvefur 2023-04-07 17:18:23 +02:00
parent b6ca51db43
commit 323408cfc9

View file

@ -47,7 +47,7 @@ local registered_mechanisms = {};
local backend_mechanism = {};
local mechanism_channelbindings = {};
-- register a new SASL mechanisms
-- register a new SASL mechanism
local function registerMechanism(name, backends, f, cb_backends)
assert(type(name) == "string", "Parameter name MUST be a string.");
assert(type(backends) == "string" or type(backends) == "table", "Parameter backends MUST be either a string or a table.");