diff options
author | TTFZippo <63889094+TTFZippo@users.noreply.github.com> | 2022-03-03 22:12:00 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2022-03-04 01:03:33 +0800 |
commit | b0e1787feeef7b10f400d7d207a33ea3119835f0 (patch) | |
tree | 9f4ef89021675edc4de1700c3f49193cf7d131ce /files/zh-cn | |
parent | 0c13ec128150b8f5097a4649c6da653cac6e3c30 (diff) | |
download | translated-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.html | 2 |
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> |