aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwlnxing <77608284+wlnxing@users.noreply.github.com>2022-01-21 02:15:19 +0800
committerGitHub <noreply@github.com>2022-01-21 02:15:19 +0800
commitd3dbfce79ad140b58898518250a5a75195692550 (patch)
treefe3e8349e68b406064051e6dddfe4c224f3168dd
parent5b49f7299b3e145ea3d8a18fdab98b06a358cb15 (diff)
downloadtranslated-content-d3dbfce79ad140b58898518250a5a75195692550.tar.gz
translated-content-d3dbfce79ad140b58898518250a5a75195692550.tar.bz2
translated-content-d3dbfce79ad140b58898518250a5a75195692550.zip
Fix: Close the source tag (#3740)
-rw-r--r--files/zh-cn/web/media/autoplay_guide/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/media/autoplay_guide/index.html b/files/zh-cn/web/media/autoplay_guide/index.html
index 332f54bfa4..6e62854697 100644
--- a/files/zh-cn/web/media/autoplay_guide/index.html
+++ b/files/zh-cn/web/media/autoplay_guide/index.html
@@ -70,7 +70,7 @@ original_slug: Web/媒体/Autoplay_guide
<p>使用 <code>autoplay</code> 属性的{{HTMLElement("audio")}}元素就像如下:</p>
<pre class="brush: html notranslate">&lt;audio id="musicplayer" autoplay&gt;
- &lt;source src="/music/chapter1.mp4"
+ &lt;source src="/music/chapter1.mp4"&gt;
&lt;/audio&gt;
</pre>