Skip to content

Commit 7582f67

Browse files
committed
style
1 parent dec0568 commit 7582f67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/nvim-tree/actions/tree/modifiers/expand-all.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ local function gen_iterator()
4747

4848
Iterator.builder(parent.nodes)
4949
:hidden()
50-
---@param node DirectoryNode
50+
---@param node DirectoryNode
5151
:applier(function(node)
5252
if should_expand(expansion_count, node) then
5353
expansion_count = expansion_count + 1
5454
expand(node)
5555
end
5656
end)
57-
---@param node DirectoryNode
57+
---@param node DirectoryNode
5858
:recursor(function(node)
5959
return expansion_count < M.MAX_FOLDER_DISCOVERY and (node.group_next and { node.group_next } or (node.open and node.nodes))
6060
end)

0 commit comments

Comments
 (0)