Skip to content

Commit 294a96e

Browse files
committed
feat(#2948): tidy
1 parent ff4ee07 commit 294a96e

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

lua/nvim-tree/renderer/decorator/bookmarks.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local DecoratorBookmarks = Decorator:extend()
77
DecoratorBookmarks.name = "Bookmarks"
88

99
---@class DecoratorBookmarks
10-
---@overload fun(explorer: Explorer): DecoratorBookmarks
10+
---@overload fun(args: DecoratorArgs): DecoratorBookmarks
1111

1212
---@protected
1313
---@param args DecoratorArgs

lua/nvim-tree/renderer/decorator/copied.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local DecoratorCopied = Decorator:extend()
66
DecoratorCopied.name = "Copied"
77

88
---@class DecoratorCopied
9-
---@overload fun(explorer: Explorer): DecoratorCopied
9+
---@overload fun(args: DecoratorArgs): DecoratorCopied
1010

1111
---@protected
1212
---@param args DecoratorArgs

lua/nvim-tree/renderer/decorator/cut.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local DecoratorCut = Decorator:extend()
66
DecoratorCut.name = "Cut"
77

88
---@class DecoratorCut
9-
---@overload fun(explorer: Explorer): DecoratorCut
9+
---@overload fun(args: DecoratorArgs): DecoratorCut
1010

1111
---@protected
1212
---@param args DecoratorArgs

lua/nvim-tree/renderer/decorator/diagnostics.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ local DecoratorDiagnostics = Decorator:extend()
3737
DecoratorDiagnostics.name = "Diagnostics"
3838

3939
---@class DecoratorDiagnostics
40-
---@overload fun(explorer: Explorer): DecoratorDiagnostics
40+
---@overload fun(args: DecoratorArgs): DecoratorDiagnostics
4141

4242
---@protected
4343
---@param args DecoratorArgs

lua/nvim-tree/renderer/decorator/git.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ local DecoratorGit = Decorator:extend()
2222
DecoratorGit.name = "Git"
2323

2424
---@class DecoratorGit
25-
---@overload fun(explorer: Explorer): DecoratorGit
25+
---@overload fun(args: DecoratorArgs): DecoratorGit
2626

2727
---@protected
2828
---@param args DecoratorArgs

lua/nvim-tree/renderer/decorator/hidden.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local DecoratorHidden = Decorator:extend()
88
DecoratorHidden.name = "Hidden"
99

1010
---@class DecoratorHidden
11-
---@overload fun(explorer: Explorer): DecoratorHidden
11+
---@overload fun(args: DecoratorArgs): DecoratorHidden
1212

1313
---@protected
1414
---@param args DecoratorArgs

lua/nvim-tree/renderer/decorator/modified.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ local DecoratorModified = Decorator:extend()
1010
DecoratorModified.name = "Modified"
1111

1212
---@class DecoratorModified
13-
---@overload fun(explorer: Explorer): DecoratorModified
13+
---@overload fun(args: DecoratorArgs): DecoratorModified
1414

1515
---@protected
1616
---@param args DecoratorArgs

lua/nvim-tree/renderer/decorator/opened.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local DecoratorOpened = Decorator:extend()
99
DecoratorOpened.name = "Opened"
1010

1111
---@class DecoratorOpened
12-
---@overload fun(explorer: Explorer): DecoratorOpened
12+
---@overload fun(args: DecoratorArgs): DecoratorOpened
1313

1414
---@protected
1515
---@param args DecoratorArgs

0 commit comments

Comments
 (0)