Skip to content

Commit

Permalink
feat(#2948): tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-courtis committed Nov 24, 2024
1 parent ff4ee07 commit 294a96e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lua/nvim-tree/renderer/decorator/bookmarks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local DecoratorBookmarks = Decorator:extend()
DecoratorBookmarks.name = "Bookmarks"

---@class DecoratorBookmarks
---@overload fun(explorer: Explorer): DecoratorBookmarks
---@overload fun(args: DecoratorArgs): DecoratorBookmarks

---@protected
---@param args DecoratorArgs
Expand Down
2 changes: 1 addition & 1 deletion lua/nvim-tree/renderer/decorator/copied.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local DecoratorCopied = Decorator:extend()
DecoratorCopied.name = "Copied"

---@class DecoratorCopied
---@overload fun(explorer: Explorer): DecoratorCopied
---@overload fun(args: DecoratorArgs): DecoratorCopied

---@protected
---@param args DecoratorArgs
Expand Down
2 changes: 1 addition & 1 deletion lua/nvim-tree/renderer/decorator/cut.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local DecoratorCut = Decorator:extend()
DecoratorCut.name = "Cut"

---@class DecoratorCut
---@overload fun(explorer: Explorer): DecoratorCut
---@overload fun(args: DecoratorArgs): DecoratorCut

---@protected
---@param args DecoratorArgs
Expand Down
2 changes: 1 addition & 1 deletion lua/nvim-tree/renderer/decorator/diagnostics.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ local DecoratorDiagnostics = Decorator:extend()
DecoratorDiagnostics.name = "Diagnostics"

---@class DecoratorDiagnostics
---@overload fun(explorer: Explorer): DecoratorDiagnostics
---@overload fun(args: DecoratorArgs): DecoratorDiagnostics

---@protected
---@param args DecoratorArgs
Expand Down
2 changes: 1 addition & 1 deletion lua/nvim-tree/renderer/decorator/git.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ local DecoratorGit = Decorator:extend()
DecoratorGit.name = "Git"

---@class DecoratorGit
---@overload fun(explorer: Explorer): DecoratorGit
---@overload fun(args: DecoratorArgs): DecoratorGit

---@protected
---@param args DecoratorArgs
Expand Down
2 changes: 1 addition & 1 deletion lua/nvim-tree/renderer/decorator/hidden.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local DecoratorHidden = Decorator:extend()
DecoratorHidden.name = "Hidden"

---@class DecoratorHidden
---@overload fun(explorer: Explorer): DecoratorHidden
---@overload fun(args: DecoratorArgs): DecoratorHidden

---@protected
---@param args DecoratorArgs
Expand Down
2 changes: 1 addition & 1 deletion lua/nvim-tree/renderer/decorator/modified.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local DecoratorModified = Decorator:extend()
DecoratorModified.name = "Modified"

---@class DecoratorModified
---@overload fun(explorer: Explorer): DecoratorModified
---@overload fun(args: DecoratorArgs): DecoratorModified

---@protected
---@param args DecoratorArgs
Expand Down
2 changes: 1 addition & 1 deletion lua/nvim-tree/renderer/decorator/opened.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ local DecoratorOpened = Decorator:extend()
DecoratorOpened.name = "Opened"

---@class DecoratorOpened
---@overload fun(explorer: Explorer): DecoratorOpened
---@overload fun(args: DecoratorArgs): DecoratorOpened

---@protected
---@param args DecoratorArgs
Expand Down

0 comments on commit 294a96e

Please sign in to comment.