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