util.sasl: Fix a singulars
authorKim Alvefur <zash@zash.se>
Fri, 07 Apr 2023 17:18:23 +0200
changeset 13064 8dd5d247f989
parent 13063 a47bd6ea7626
child 13065 7e0bb5154f3b
util.sasl: Fix a singulars Thanks timeless, your mere existence inspires us to improve our spelling, tho this was more syntax.
util/sasl.lua
--- a/util/sasl.lua	Fri Apr 07 16:00:23 2023 +0100
+++ b/util/sasl.lua	Fri Apr 07 17:18:23 2023 +0200
@@ -47,7 +47,7 @@
 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.");