diff --git a/lua/lazyvim/plugins/extras/editor/medias.lua b/lua/lazyvim/plugins/extras/editor/medias.lua index 1e3706d1..fb4644dc 100644 --- a/lua/lazyvim/plugins/extras/editor/medias.lua +++ b/lua/lazyvim/plugins/extras/editor/medias.lua @@ -1,5 +1,6 @@ local findCmd = "" --- Use the simple Set that implemented by a table to avoid duplicates; it only contains the methods add and toList +--- @class Set A simple Set implementation using a table to avoid duplicates; it only contains the methods add and toList +--- @field _data table Table to hold the set data. local supportedFiletypeSet = { _data = {} } function supportedFiletypeSet:add(values)