From 81cb5d0c288860d17d0abf605ea837f6a7ffe463 Mon Sep 17 00:00:00 2001 From: Mike Ajala Date: Sun, 12 Jul 2020 20:35:19 +0100 Subject: [PATCH] Fixed text.md Corrected the typo "composed from" and replaced it with "composed of" in the `text.md` introduction tutorial. --- site/content/tutorial/01-introduction/01-basics/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/01-introduction/01-basics/text.md b/site/content/tutorial/01-introduction/01-basics/text.md index c0fa2f48a3..e683d4c73a 100644 --- a/site/content/tutorial/01-introduction/01-basics/text.md +++ b/site/content/tutorial/01-introduction/01-basics/text.md @@ -29,4 +29,4 @@ Each tutorial chapter will have a 'Show me' button that you can click if you get ## Understanding components -In Svelte, an application is composed from one or more *components*. A component is a reusable self-contained block of code that encapsulates HTML, CSS and JavaScript that belong together, written into a `.svelte` file. The 'hello world' example in the code editor is a simple component. +In Svelte, an application is composed of one or more *components*. A component is a reusable self-contained block of code that encapsulates HTML, CSS and JavaScript that belong together, written into a `.svelte` file. The 'hello world' example in the code editor is a simple component.