aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/http/methods/patch/index.html
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-27 02:31:24 +0300
committerGitHub <noreply@github.com>2021-10-27 02:31:24 +0300
commit980fe00a74a9ad013b945755415ace2e5429c3c2 (patch)
treea1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/web/http/methods/patch/index.html
parent374a039b97a11ee7306539d16aaab27fed66b398 (diff)
downloadtranslated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.gz
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.bz2
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.zip
[RU] Remove notranslate (#2874)
Diffstat (limited to 'files/ru/web/http/methods/patch/index.html')
-rw-r--r--files/ru/web/http/methods/patch/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/http/methods/patch/index.html b/files/ru/web/http/methods/patch/index.html
index 06700f5653..9cd49d35d4 100644
--- a/files/ru/web/http/methods/patch/index.html
+++ b/files/ru/web/http/methods/patch/index.html
@@ -53,14 +53,14 @@ translation_of: Web/HTTP/Methods/PATCH
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate">PATCH /file.txt HTTP/1.1
+<pre class="syntaxbox">PATCH /file.txt HTTP/1.1
</pre>
<h2 id="Пример">Пример</h2>
<h3 id="Запрос">Запрос</h3>
-<pre class="line-numbers language-html notranslate">PATCH /file.txt HTTP/1.1
+<pre class="line-numbers language-html">PATCH /file.txt HTTP/1.1
Host: www.example.com
Content-Type: application/example
If-Match: "e0023aa4e"
@@ -72,7 +72,7 @@ Content-Length: 100
<p>Успешный ответ указывается с помощью кода ответа {{HTTPStatus("204")}}, поскольку ответ в примере не содержит тела сообщения. А если бы содержал, то код был бы {{HTTPStatus("200")}}.</p>
-<pre class="newpage notranslate">HTTP/1.1 204 No Content
+<pre class="newpage">HTTP/1.1 204 No Content
Content-Location: /file.txt
ETag: "e0023aa4f"</pre>