From 7c7bacea2552003265ddbeb3435cc6f581b49fee Mon Sep 17 00:00:00 2001 From: Erik Onarheim Date: Fri, 16 Feb 2024 16:36:22 -0600 Subject: [PATCH] docs: Fix ECS typo --- site/docs/05-entity-component-system/05.2-components.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/05-entity-component-system/05.2-components.mdx b/site/docs/05-entity-component-system/05.2-components.mdx index eef9dbbab..60bfcb958 100644 --- a/site/docs/05-entity-component-system/05.2-components.mdx +++ b/site/docs/05-entity-component-system/05.2-components.mdx @@ -4,7 +4,7 @@ slug: /components section: Entity Component System --- -[[Component|Components]] are a useful tool for storing data associated with an entity. Components can be used with [[System|Systems]] to implement complex behavior. Sometimes [[Component|Components]] can be a better choice than creating an inherited +[[Component|Components]] are a useful tool for storing data associated with an entity. Components can be used with [[System|Systems]] to implement complex behavior. Sometimes [[Component|Components]] can be a better choice than using inheritance. Components provide reusable behavior that can be easier to maintain over complex inheritance hierarchies. ## Custom Components