diff options
author | jonishaso <jonishaso@hotmail.com> | 2021-03-15 10:55:53 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 10:55:53 +1100 |
commit | 4548c9e2001bd439908ad526347075147c9d29f9 (patch) | |
tree | ac2772ec2214e74fe709b613615b788af11dbd3b /files/zh-cn/glossary/idempotent/index.html | |
parent | 3ea7d2e4d64269cc3ff2cbd7dea4415f25202ab0 (diff) | |
download | translated-content-4548c9e2001bd439908ad526347075147c9d29f9.tar.gz translated-content-4548c9e2001bd439908ad526347075147c9d29f9.tar.bz2 translated-content-4548c9e2001bd439908ad526347075147c9d29f9.zip |
corret some translation error
Diffstat (limited to 'files/zh-cn/glossary/idempotent/index.html')
-rw-r--r-- | files/zh-cn/glossary/idempotent/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/glossary/idempotent/index.html b/files/zh-cn/glossary/idempotent/index.html index e0dde60f23..ba2604eb38 100644 --- a/files/zh-cn/glossary/idempotent/index.html +++ b/files/zh-cn/glossary/idempotent/index.html @@ -21,14 +21,14 @@ GET /pageX HTTP/1.1 GET /pageX HTTP/1.1 </pre> -<p><code>POST /add_row HTTP/1.1</code> 是幂等的。如果调用多次,就会增加多行记录:</p> +<p><code>POST /add_row HTTP/1.1</code> 不是幂等的。如果调用多次,就会增加多行记录:</p> <pre class="notranslate">POST /add_row HTTP/1.1 POST /add_row HTTP/1.1 -> Adds a 2nd row POST /add_row HTTP/1.1 -> Adds a 3rd row </pre> -<p><code>DELETE /idX/delete HTTP/1.1</code> 幂等的,即便是不同请求之间接收到的状态码不一样:</p> +<p><code>DELETE /idX/delete HTTP/1.1</code> 是幂等的,即便是不同请求之间接收到的状态码不一样:</p> <pre class="notranslate">DELETE /idX/delete HTTP/1.1 -> Returns 200 if idX exists DELETE /idX/delete HTTP/1.1 -> Returns 404 as it just got deleted |