From 09da8e087a8e8dee374e3562f37f6ec3fa287692 Mon Sep 17 00:00:00 2001 From: Muhammad Muhajir Date: Thu, 25 Apr 2024 10:04:28 +0700 Subject: [PATCH] docs: Fix typo in system docs (#3028) --- site/docs/05-entity-component-system/05.3-systems.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/05-entity-component-system/05.3-systems.mdx b/site/docs/05-entity-component-system/05.3-systems.mdx index c57bb1b96..d6b71f897 100644 --- a/site/docs/05-entity-component-system/05.3-systems.mdx +++ b/site/docs/05-entity-component-system/05.3-systems.mdx @@ -123,7 +123,7 @@ class SearchSystem extends ex.System { } const scene = new ex.Scene(); -scene.world.add(new SearchSystem()); +scene.world.add(SearchSystem); // Actors come with batteries included built in features const actor = new ex.Actor({