Skip to content

Commit

Permalink
one last format
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatiusmb committed Apr 16, 2021
1 parent be3687b commit 16c6272
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -33,7 +33,7 @@ A `.svelte` file would look something like this:
}
</script>
<button on:click="{handleClick}">Count: {count}</button>
<button on:click={handleClick}>Count: {count}</button>
<p>{count} * 2 = {doubled}</p>
<p>{doubled} * 2 = {quadrupled}</p>
Expand Down
6 changes: 3 additions & 3 deletions docs/README.md
Expand Up @@ -54,12 +54,12 @@ The VS Code extension comes with its own syntax highlighting grammar which defin
"textMateRules": [
{
"settings": {
"foreground": "#569CD6", // any color you like
"foreground": "#569CD6" // any color you like
},
"scope": "support.class.component.svelte" // scope name you want to adjust highlighting for
}
],
},
]
}
}
}
```
Expand Down
1 change: 1 addition & 0 deletions docs/internal/overview.md
Expand Up @@ -34,6 +34,7 @@ This is also the reason why preprocessors such as `svelte-preprocess` cannot do
<script lang="ts">
let a: number = 1;
</script>
{a}
```

Expand Down

0 comments on commit 16c6272

Please sign in to comment.