aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorhxy521 <70235647+hxy521@users.noreply.github.com>2021-07-06 09:31:33 +0800
committerGitHub <noreply@github.com>2021-07-06 09:31:33 +0800
commit0f7eb415e26e7d145d16237151454db3cc29e219 (patch)
tree2aa90b526e23b18c90f60f7bbaa1f62194cc5949 /files
parentc8a90c7efb53bdf1f1b019a071d9b80e3efb823e (diff)
downloadtranslated-content-0f7eb415e26e7d145d16237151454db3cc29e219.tar.gz
translated-content-0f7eb415e26e7d145d16237151454db3cc29e219.tar.bz2
translated-content-0f7eb415e26e7d145d16237151454db3cc29e219.zip
Fix Web/Guide/AJAX/Getting_Started, zh-CN (#1392)
252 line, 'conputedString' -> 'computedString'.
Diffstat (limited to 'files')
-rw-r--r--files/zh-cn/web/guide/ajax/getting_started/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/guide/ajax/getting_started/index.html b/files/zh-cn/web/guide/ajax/getting_started/index.html
index 4aed922902..1416ae69b4 100644
--- a/files/zh-cn/web/guide/ajax/getting_started/index.html
+++ b/files/zh-cn/web/guide/ajax/getting_started/index.html
@@ -249,7 +249,7 @@ alert(root_node.firstChild.data);
<p><code>{"userData":"Jane","computedString":"Hi, Jane!"}</code></p>
-<p>为了在 <code>alertContents()</code> 中使用这个数据,我们可不能只是alert <code>responseText</code> ,我们要解析它并 alert <code>conputedString</code>,我们想要的属性:</p>
+<p>为了在 <code>alertContents()</code> 中使用这个数据,我们可不能只是alert <code>responseText</code> ,我们要解析它并 alert <code>computedString</code>,我们想要的属性:</p>
<pre class="brush: js">function alertContents() {
if (httpRequest.readyState === XMLHttpRequest.DONE) {