Skip to content

Commit b68a8c1

Browse files
committed
Pls place it at the correct position..
1 parent 7608a17 commit b68a8c1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ jobs:
3939
run: |
4040
mkdir -p release
4141
lua tools/bundler.lua
42-
43-
# Step 4: Prepare and Generate Documentation
42+
# Step 4: Install LuaFileSystem
43+
- name: Install LuaFileSystem
44+
run: luarocks install luafilesystem
45+
# Step 5: Prepare and Generate Documentation
4446
- name: Prepare docs directory
4547
run: |
4648
# Checkout gh-pages branch in a separate directory
@@ -55,9 +57,6 @@ jobs:
5557
lua tools/generate-docs.lua
5658
5759
cp -r build_docs/docs/references/* gh-pages/docs/references/
58-
# Step 5: Install LuaFileSystem
59-
- name: Install LuaFileSystem
60-
run: luarocks install luafilesystem
6160
# Step 6: Deploy Documentation
6261
- name: Deploy Documentation
6362
if: github.event_name == 'push' && github.ref == 'refs/heads/main'

src/elements/Tree.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ local VisualElement = require("elements/VisualElement")
22
local sub = string.sub
33
---@cofnigDescription The tree element provides a hierarchical view of nodes that can be expanded and collapsed, with support for selection and scrolling.
44

5+
56
--- This is the tree class. It provides a hierarchical view of nodes that can be expanded and collapsed,
67
--- with support for selection and scrolling.
78
---@class Tree : VisualElement

0 commit comments

Comments
 (0)