Skip to content

Commit b8c2b9f

Browse files
authored
Update article.md
Minor: typo fix.
1 parent 799d373 commit b8c2b9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

8-web-components/4-template-element/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ To summarize:
110110
The `<template>` tag is quite unique, because:
111111

112112
- The browser checks HTML syntax inside it (as opposed to using a template string inside a script).
113-
- ...But still allows to use any top-level HTML tags, even those that don't make sense without proper wrappers (e.g. `<tr>`).
113+
- ...But still allows use of any top-level HTML tags, even those that don't make sense without proper wrappers (e.g. `<tr>`).
114114
- The content becomes interactive: scripts run, `<video autoplay>` plays etc, when inserted into the document.
115115

116116
The `<template>` element does not feature any iteration mechanisms, data binding or variable substitutions, but we can implement those on top of it.

0 commit comments

Comments
 (0)