Fix typos

This commit is contained in:
Ukendio 2025-07-27 17:05:15 +02:00
parent b521fe750a
commit abc0b1ec22
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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<T>(): Entity<T> -- The new componen.
function World:component<T>(): Entity<T> -- The new component.
```
Example: