Skip to content

Commit dae8e4b

Browse files
authored
docs: add double quotes to type attribute (sveltejs#444)
1 parent b7fe0e1 commit dae8e4b

File tree

1 file changed

+1
-1
lines changed
  • content/tutorial/01-svelte/06-bindings/03-checkbox-inputs

1 file changed

+1
-1
lines changed

content/tutorial/01-svelte/06-bindings/03-checkbox-inputs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Checkboxes are used for toggling between states. Instead of binding to `input.va
66

77
```svelte
88
/// file: App.svelte
9-
<input type=checkbox +++bind:+++checked={yes}>
9+
<input type="checkbox" +++bind:+++checked={yes}>
1010
```

0 commit comments

Comments
 (0)