From 8d53c556b564f1fa427f63e7467cbe77a756d045 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Sat, 13 Sep 2025 10:18:07 +0200 Subject: [PATCH] Wrong path in generate-docs --- src/elements/Tree.lua | 1 + tools/generate-docs.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/elements/Tree.lua b/src/elements/Tree.lua index 070d0d7..b3711e7 100644 --- a/src/elements/Tree.lua +++ b/src/elements/Tree.lua @@ -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 diff --git a/tools/generate-docs.lua b/tools/generate-docs.lua index 62668f7..88841fc 100644 --- a/tools/generate-docs.lua +++ b/tools/generate-docs.lua @@ -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')