# HG changeset patch # User Kim Alvefur # Date 1605388966 -3600 # Node ID 4e060ae8520bc52cc28e8e3b80412d1ce8959700 # Parent f051394762ff69aabf7628f8665e63b925f4cd5b util.error: Remove a stray word from a comment Earlier in the process the namespace could be given in the registry table, the comment would have read > registry can be given as second argument if namespace is either not > used or is given in the registry table The word seems to have been left when this method was scrapped for being complicated and redundant. diff -r f051394762ff -r 4e060ae8520b util/error.lua --- a/util/error.lua Wed Nov 11 16:09:55 2020 +0100 +++ b/util/error.lua Sat Nov 14 22:22:46 2020 +0100 @@ -91,7 +91,7 @@ local function init(source, namespace, registry) if type(namespace) == "table" then - -- registry can be given as second argument if namespace is either not used + -- registry can be given as second argument if namespace is not used registry, namespace = namespace, nil; end local _, protoerr = next(registry, nil);