From dc880324bb7e28506d30e084c986900812cdabd3 Mon Sep 17 00:00:00 2001 From: arthur Date: Mon, 10 Jun 2024 18:25:47 +0800 Subject: [PATCH] update LDoc --- lua/lazyvim/plugins/extras/editor/medias.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)