From 3e53cfd4124d6efee3e673db1edf86765bd53b3e Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Wed, 19 Mar 2025 18:01:51 +0200 Subject: [PATCH] docs: fix --- lua/gopher/struct_tags.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/gopher/struct_tags.lua b/lua/gopher/struct_tags.lua index 96a4cff..d4901f2 100644 --- a/lua/gopher/struct_tags.lua +++ b/lua/gopher/struct_tags.lua @@ -88,7 +88,7 @@ local function handler_user_args(args) end ---Adds tags to a struct under the cursor ----@param ... string Tags to add to the struct fields. If not provided, it will use [config.tag.default_tag] +---@param ... string Tags to add to the struct fields. If not provided, it will use [config.gotag.default_tag] function struct_tags.add(...) local args = { ... } local fpath = vim.fn.expand "%" @@ -99,7 +99,7 @@ function struct_tags.add(...) end ---Removes tags from a struct under the cursor ----@param ... string Tags to add to the struct fields. If not provided, it will use [config.tag.default_tag] +---@param ... string Tags to add to the struct fields. If not provided, it will use [config.gotag.default_tag] function struct_tags.remove(...) local args = { ... } local fpath = vim.fn.expand "%"