Trie: Remove TODO comment

This commit is contained in:
Lars Mueller 2022-08-19 18:19:45 +02:00
parent 597666f3e3
commit 756867495f

@ -7,6 +7,8 @@ setfenv(1, _ENV)
local metatable = {__index = _ENV}
-- Setting the metatable is fine as it does not contain single-character keys.
-- TODO (?) encapsulate in "root" field for better code quality?
function new(table) return setmetatable(table or {}, metatable) end
function insert(self, word, value, overwrite)