lua-language-server
                                
                                 lua-language-server copied to clipboard
                                
                                    lua-language-server copied to clipboard
                            
                            
                            
                        @see annotaton duplicates documentation when using with @class
How are you using the lua-language-server?
Visual Studio Code Extension (sumneko.lua)
Which OS are you using?
Windows
What is the issue affecting?
Annotations
Expected Behaviour
I'm trying to add some @see tags to my @class
Actual Behaviour
When hovering class in editor, displayed documentation is printed twice.
Reproduction steps
Here is basic code sample. Hovering or typing class1 causes issue with displayed documentation
--- some class dock
---
---@class C2
local class2 = {}
--- another class dock here
---
---@see C2
---@class C1
local class1 = {}
---@type C1
local class1_instance = class1