Correcting word error

Looks like this was meant to indicate the folder, not the file
pull/2902/head
Chris Strolia-Davis 6 years ago committed by GitHub
parent 767ce22ed1
commit 6fbf9d2669
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,7 +14,7 @@ It's useful for things like this folder tree view, where folders can contain *ot
{/if} {/if}
``` ```
...but that's impossible, because a file can't import itself. Instead, we use `<svelte:self>`: ...but that's impossible, because a folder can't import itself. Instead, we use `<svelte:self>`:
```html ```html
{#if file.type === 'folder'} {#if file.type === 'folder'}
@ -22,4 +22,4 @@ It's useful for things like this folder tree view, where folders can contain *ot
{:else} {:else}
<File {...file}/> <File {...file}/>
{/if} {/if}
``` ```

Loading…
Cancel
Save