From 1d45cfe38cfb23d48eb6b655851e9fdf54ae7c3e Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Sat, 13 Sep 2025 09:56:37 +0200 Subject: [PATCH] Path fix --- src/elements/Tree.lua | 1 - tools/generate-docs.lua | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/elements/Tree.lua b/src/elements/Tree.lua index b3711e7..070d0d7 100644 --- a/src/elements/Tree.lua +++ b/src/elements/Tree.lua @@ -2,7 +2,6 @@ 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 33091e5..dbb68bc 100644 --- a/tools/generate-docs.lua +++ b/tools/generate-docs.lua @@ -3,7 +3,7 @@ local arg = arg or {...} local SRC_DIR = arg[1] or 'src' local OUT_DIR = arg[2] or 'docs' -local BasaltDoc = require('BasaltDoc') +local BasaltDoc = require('tools/BasaltDoc') local fileSystem if fs then