From 511a342d322a20791acddc9545ceecc976c414e1 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 24 May 2017 10:04:49 -0700 Subject: [PATCH] Typo fix for "compoents" --- Components and Modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components and Modules.md b/Components and Modules.md index d1a39bb..5c8b5e7 100644 --- a/Components and Modules.md +++ b/Components and Modules.md @@ -22,7 +22,7 @@ They all contain a `.gameStarter` reference to their parent GameStartr, and may The `GameStartr` class comes with a few built-in components for core engine features, such as `Graphics`, `Maps`, and `Physics`. -You can implement your own compoents by subclassing `Component`. +You can implement your own components by subclassing `Component`. ```typescript import { Component } from "eightbittr/lib/Component";