From 90f708b1aa50c16dda3535df862fcd45735474b1 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Tue, 21 Dec 2021 15:03:46 +0100 Subject: [PATCH] Fix typo --- doc-site/public/docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc-site/public/docs/getting-started.md b/doc-site/public/docs/getting-started.md index 342b974..56f3efd 100644 --- a/doc-site/public/docs/getting-started.md +++ b/doc-site/public/docs/getting-started.md @@ -39,4 +39,4 @@ Alternativley, use from CDN # Slim templates -Every slim.js component needs to define it's template. As a rule of thumb, everything wrapped in handlebars (as long as the markup is valid) is transformed into code exeucted in the scope of the component. Slim detects every handlebars-wrapped code, looks up everything that matches `this.*` and wraps the property name with getter and setter. Whenever the property is changed, the targeted node (text node or attribute) is altered accordingly. Some directives can still execute code, but do not require detection for property changes, and works without the need for handlebars syntax. +Every slim.js component needs to define it's template. As a rule of thumb, everything wrapped in handlebars (as long as the markup is valid) is transformed into code executed in the scope of the component. Slim detects every handlebars-wrapped code, looks up everything that matches `this.*` and wraps the property name with getter and setter. Whenever the property is changed, the targeted node (text node or attribute) is altered accordingly. Some directives can still execute code, but do not require detection for property changes, and works without the need for handlebars syntax.