# HG changeset patch # User Kim Alvefur # Date 1680880703 -7200 # Node ID 8dd5d247f989430ffd455a58d34fa74813873e01 # Parent a47bd6ea7626bc1d037e67bb5519f2c8c1ee0b2b util.sasl: Fix a singulars Thanks timeless, your mere existence inspires us to improve our spelling, tho this was more syntax. diff -r a47bd6ea7626 -r 8dd5d247f989 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.");