Skip to content

Commit dd92dc3

Browse files
authoredMay 27, 2024··
chore: remove self-closing tags (#617)
* remove self-closing tags in src * self-closing tags
1 parent f56c35a commit dd92dc3

File tree

60 files changed

+95
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+95
-95
lines changed
 

‎content/tutorial/01-svelte/07-lifecycle/01-onmount/app-a/src/lib/App.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<canvas
66
width={32}
77
height={32}
8-
/>
8+
></canvas>
99

1010
<style>
1111
canvas {

‎content/tutorial/01-svelte/07-lifecycle/01-onmount/app-b/src/lib/App.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<canvas
2121
width={32}
2222
height={32}
23-
/>
23+
></canvas>
2424

2525
<style>
2626
canvas {

0 commit comments

Comments
 (0)
Please sign in to comment.