aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/guide
diff options
context:
space:
mode:
author1sm <31946591+1sm23@users.noreply.github.com>2021-11-16 11:19:04 +0800
committerGitHub <noreply@github.com>2021-11-16 11:19:04 +0800
commita9b6315e52f4b97a9a6cf066dc16fe7474c7587d (patch)
tree24c4b5bfb7131a33282ae4d9e061e3b841034af4 /files/zh-cn/web/javascript/guide
parent555ecf9a9ca12b13e2d0ea9b94037a608037bec7 (diff)
downloadtranslated-content-a9b6315e52f4b97a9a6cf066dc16fe7474c7587d.tar.gz
translated-content-a9b6315e52f4b97a9a6cf066dc16fe7474c7587d.tar.bz2
translated-content-a9b6315e52f4b97a9a6cf066dc16fe7474c7587d.zip
fix wrong <code> position (#3094)
Diffstat (limited to 'files/zh-cn/web/javascript/guide')
-rw-r--r--files/zh-cn/web/javascript/guide/details_of_the_object_model/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/guide/details_of_the_object_model/index.html b/files/zh-cn/web/javascript/guide/details_of_the_object_model/index.html
index 2d7e3ee891..5beb697684 100644
--- a/files/zh-cn/web/javascript/guide/details_of_the_object_model/index.html
+++ b/files/zh-cn/web/javascript/guide/details_of_the_object_model/index.html
@@ -139,7 +139,7 @@ public class Employee {
</tbody>
</table>
-<p><code>Manager 和 WorkerBee 的定义表示在如何指定继承链中上一层对象时,两者存在不同点。在 JavaScript 中,您会添加一个原型实例作为构造器函数prototype 属性的值,然后将该构造函数原型的构造器重载为其自身。这一动作可以在构造器函数定义后的任意时刻执行。而在 Java 中,则需要在类定义中指定父类,且不能在类定义之外改变父类。</code></p>
+<p><code>Manager<code/> 和 <code>WorkerBee<code/> 的定义表示在如何指定继承链中上一层对象时,两者存在不同点。在 JavaScript 中,您会添加一个原型实例作为构造器函数prototype 属性的值,然后将该构造函数原型的构造器重载为其自身。这一动作可以在构造器函数定义后的任意时刻执行。而在 Java 中,则需要在类定义中指定父类,且不能在类定义之外改变父类。</p>
<table class="standard-table">
<thead>