Skip to content

Commit 56da210

Browse files
committed
address @gtm-nayan's comments
1 parent 6c1ecdd commit 56da210

File tree

2 files changed

+2
-2
lines changed
  • content/tutorial
    • 01-svelte/06-bindings/04-group-inputs
    • 03-advanced-svelte/05-bindings/05-bind-this

2 files changed

+2
-2
lines changed

content/tutorial/01-svelte/06-bindings/04-group-inputs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Group inputs
44

55
If you have multiple inputs relating to the same value, you can use [`bind:group`](docs#template-syntax-element-directives-bind-group) along with the `value` attribute. Radio inputs in the same group are mutually exclusive; checkbox inputs in the same group form an array of selected values.
66

7-
Add [`bind:group`](docs#template-syntax-element-directives-bind-group) to each input:
7+
Add `bind:group` to each input:
88

99
```svelte
1010
<input type=radio bind:group={scoops} name="scoops" value={1}>

content/tutorial/03-advanced-svelte/05-bindings/05-bind-this/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: This
33
---
44

5-
The readonly [`this`]($docs#template-syntax-element-directives-bind-this) binding applies to every element ([and component]($docs#template-syntax-component-directives-bind-this)) and allows you to obtain a reference to rendered elements. For example, we can get a reference to a `<canvas>` element:
5+
The readonly [`this`]($docs#template-syntax-element-directives-bind-this) binding applies to every element (and component) and allows you to obtain a reference to rendered elements. For example, we can get a reference to a `<canvas>` element:
66

77
```svelte
88
<canvas

0 commit comments

Comments
 (0)