Wrong path in generate-docs

This commit is contained in:
Robert Jelic
2025-09-13 10:18:07 +02:00
parent a1c0917908
commit 8d53c556b5
2 changed files with 2 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ local VisualElement = require("elements/VisualElement")
local sub = string.sub
---@cofnigDescription The tree element provides a hierarchical view of nodes that can be expanded and collapsed, with support for selection and scrolling.
--- This is the tree class. It provides a hierarchical view of nodes that can be expanded and collapsed,
--- with support for selection and scrolling.
---@class Tree : VisualElement

View File

@@ -1,7 +1,7 @@
local arg = arg or {...}
local SRC_DIR = arg[1] or 'src'
local OUT_DIR = arg[2] or 'docs'
local OUT_DIR = arg[2] or 'build_docs/docs'
local BasaltDoc = require('tools/BasaltDoc')