From b6590fa81c5915bebf12e8366898eab452d5bb5b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Paulo?=
<62244135+joaopaulobdac@users.noreply.github.com>
Date: Mon, 20 Jul 2020 22:48:01 -0300
Subject: [PATCH] Clarify noun regarding svelte-self example
Hey! This is a small documentation change which I feel helps make super clear that "file" is really referencing to the `Folder.svelte` component file, not the component.
---
.../tutorial/16-special-elements/01-svelte-self/text.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/site/content/tutorial/16-special-elements/01-svelte-self/text.md b/site/content/tutorial/16-special-elements/01-svelte-self/text.md
index 773dded83e..eb33410dff 100644
--- a/site/content/tutorial/16-special-elements/01-svelte-self/text.md
+++ b/site/content/tutorial/16-special-elements/01-svelte-self/text.md
@@ -14,7 +14,7 @@ It's useful for things like this folder tree view, where folders can contain *ot
{/if}
```
-...but that's impossible, because a file can't import itself. Instead, we use ``:
+...but that's impossible, because a component can't import itself. Instead, we use ``:
```html
{#if file.type === 'folder'}
@@ -22,4 +22,4 @@ It's useful for things like this folder tree view, where folders can contain *ot
{:else}
{/if}
-```
\ No newline at end of file
+```