From abc0b1ec22970c26de0a3c3c23ecd9ae291b5e09 Mon Sep 17 00:00:00 2001 From: Ukendio Date: Sun, 27 Jul 2025 17:05:15 +0200 Subject: [PATCH] Fix typos --- docs/api/jecs.md | 2 +- docs/api/world.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/jecs.md b/docs/api/jecs.md index 2b5ea33..6b56d32 100755 --- a/docs/api/jecs.md +++ b/docs/api/jecs.md @@ -97,7 +97,7 @@ Builtin component type. This ID is for naming components, but realistically you jecs.Rest: Id ``` -Builtin component type. This ID is for setting up a callback that is invoked when an instance of a component is changed. +Builtin component type. This ID is simplying for denoting the end of the range for builtin component IDs. # Functions diff --git a/docs/api/world.md b/docs/api/world.md index 6ecce66..b10c2f8 100755 --- a/docs/api/world.md +++ b/docs/api/world.md @@ -60,7 +60,7 @@ Creates a new component. Do note components are entities as well, meaning jecs a These are meant to be added onto other entities through `add` and `set` ```luau -function World:component(): Entity -- The new componen. +function World:component(): Entity -- The new component. ``` Example: