aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn
diff options
context:
space:
mode:
authorTTFZippo <63889094+TTFZippo@users.noreply.github.com>2022-03-03 22:12:00 +0800
committerIrvin <irvinfly@gmail.com>2022-03-04 01:03:33 +0800
commitb0e1787feeef7b10f400d7d207a33ea3119835f0 (patch)
tree9f4ef89021675edc4de1700c3f49193cf7d131ce /files/zh-cn
parent0c13ec128150b8f5097a4649c6da653cac6e3c30 (diff)
downloadtranslated-content-b0e1787feeef7b10f400d7d207a33ea3119835f0.tar.gz
translated-content-b0e1787feeef7b10f400d7d207a33ea3119835f0.tar.bz2
translated-content-b0e1787feeef7b10f400d7d207a33ea3119835f0.zip
fix: an error in translation
It would be better to translate the word 'return' to '返回' in line 40
Diffstat (limited to 'files/zh-cn')
-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>