From d6f4d782a2e9fe86743b06cc83c26012bd4155da Mon Sep 17 00:00:00 2001 From: Lucas <122660228+bortantle@users.noreply.github.com> Date: Mon, 14 Oct 2024 21:03:13 -0300 Subject: [PATCH] docs: fix syntax in ts example (#146) --- docs/api/world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/world.md b/docs/api/world.md index 60b0fc4..91f1d78 100644 --- a/docs/api/world.md +++ b/docs/api/world.md @@ -136,7 +136,7 @@ print(world:has(Entity, Ragdolled)) ```ts [typescript] const IsMoving = world.component(); -const Ragdolled = world.entity(); -- This is a tag, meaning it won't contain data +const Ragdolled = world.entity(); // This is a tag, meaning it won't contain data const Health = world.component(); const Entity = world.entity();