Commit a9c3f49
authored
jQuery: Add a self-closed tag back to an example
This adds an actual quick-closed tag in this code example, as it is implied by the text that there can be one:
> Tags that cannot contain elements may be quick-closed or not:
> ```js
> $( "<img>" );
> $( "<input>" );
> ```
to:
> Tags that cannot contain elements may be quick-closed or not:
> ```js
> $( "<img />" );
> $( "<input>" );
> ```
Closes jquerygh-12641 parent ed882c0 commit a9c3f49
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
183 | 183 | | |
184 | 184 | | |
185 | 185 | | |
186 | | - | |
| 186 | + | |
187 | 187 | | |
188 | 188 | | |
189 | 189 | | |
| |||
0 commit comments