diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 8e05f90..fa6e9c3 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -25,10 +25,6 @@ export default defineConfig({ }, ], "/learn/": [ - { - text: "Overview", - items: [{ text: "Overview", link: "/learn/overview" }], - }, { text: "API Reference", items: [ diff --git a/docs/learn/overview.md b/docs/learn/overview.md index 2e6eeaf..9047a01 100644 --- a/docs/learn/overview.md +++ b/docs/learn/overview.md @@ -99,14 +99,13 @@ print(e) -- 1000 ``` ```typescript [typescript] -world.range(1000, 5000) -- Defines the lower and upper bounds of the entity range respectively +world.range(1000, 5000) // Defines the lower and upper bounds of the entity range respectively -local e = world.entity() +const e = world.entity() print(e) // Output: // 1000 ``` -``` ::: ### Hooks