fix: remove forward slash from <source> tag (#41422)

The forward slash at the end of the <source> tag in the example is removed, as this is more common.
This commit is contained in:
Emer Conghaile
2021-03-09 10:20:22 -06:00
committed by GitHub
parent c5bcebc724
commit 18068cdeaa

View File

@ -17,8 +17,8 @@ Here's an example:
```html
<audio id="meowClip" controls>
<source src="audio/meow.mp3" type="audio/mpeg" />
<source src="audio/meow.ogg" type="audio/ogg" />
<source src="audio/meow.mp3" type="audio/mpeg">
<source src="audio/meow.ogg" type="audio/ogg">
</audio>
```