From 9e1e59fb15406d1d12e85578a4a196f2400f6dd6 Mon Sep 17 00:00:00 2001 From: Bryan Miller Date: Fri, 27 Oct 2023 18:17:46 -0500 Subject: [PATCH] Spelling fix in docs - Components.md --- docs/modules/Components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/Components.md b/docs/modules/Components.md index a48933696e..719e6856f9 100644 --- a/docs/modules/Components.md +++ b/docs/modules/Components.md @@ -116,7 +116,7 @@ You can read properties with the `get` method, like, for example, the `type` ```js const componentType = component.get('type'); // eg. 'image' ``` -and to update properties you'd use `set`, which might change the way a component behavies in the canvas. +and to update properties you'd use `set`, which might change the way a component behaves in the canvas. ```js // Make the component not draggable component.set('draggable', false);