aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-rw-r--r--files/zh-cn/web/api/formdata/get/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/formdata/get/index.html b/files/zh-cn/web/api/formdata/get/index.html
index 507eb09700..db440fb59d 100644
--- a/files/zh-cn/web/api/formdata/get/index.html
+++ b/files/zh-cn/web/api/formdata/get/index.html
@@ -37,7 +37,7 @@ translation_of: Web/API/FormData/get
<pre class="brush: js">formData.append('username', 'Chris');
formData.append('username', 'Bob');</pre>
-<p><code><font face="Open Sans, Arial, sans-serif">接下来使用</font>get()来回去第一个和"username"关联的值</code>:</p>
+<p><code><font face="Open Sans, Arial, sans-serif">接下来使用</font>get()来返回第一个和"username"关联的值</code>:</p>
<pre class="brush: js">formData.get('username'); // Returns "Chris"</pre>