diff options
author | Alexey Istomin <webistomin@gmail.com> | 2021-03-20 17:12:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-20 17:12:30 +0300 |
commit | ffbf5a234039386eae76968a1844f766a9da3d67 (patch) | |
tree | 6bd08e3d64417a3b53a6677f159ed3c5cbce37ed /files/ru/web/javascript/reference/operators | |
parent | 0057f9bf08252974cd89456bd9f4334dc236c40a (diff) | |
download | translated-content-ffbf5a234039386eae76968a1844f766a9da3d67.tar.gz translated-content-ffbf5a234039386eae76968a1844f766a9da3d67.tar.bz2 translated-content-ffbf5a234039386eae76968a1844f766a9da3d67.zip |
Fix various typos in Russian translation (#238)
* docs(ru): fix typos
* Update index.html
Co-authored-by: Alexey Pyltsyn <lex61rus@gmail.com>
Diffstat (limited to 'files/ru/web/javascript/reference/operators')
-rw-r--r-- | files/ru/web/javascript/reference/operators/bitwise_and/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/javascript/reference/operators/bitwise_and/index.html b/files/ru/web/javascript/reference/operators/bitwise_and/index.html index cb2c53503a..6c08ef0ded 100644 --- a/files/ru/web/javascript/reference/operators/bitwise_and/index.html +++ b/files/ru/web/javascript/reference/operators/bitwise_and/index.html @@ -23,7 +23,7 @@ translation_of: Web/JavaScript/Reference/Operators/Bitwise_AND <h2 id="Описание">Описание</h2> -<p>Операнды преобразуются в 32-битные целые числа и выражаются серией битов (нулей and единиц). Числа с более чем 32 битами отбрасывают старшие разряды. Например, следующее целое число с более чем 32 битами будет преобразовано в 32-биитное целое:</p> +<p>Операнды преобразуются в 32-битные целые числа и выражаются серией битов (нулей and единиц). Числа с более чем 32 битами отбрасывают старшие разряды. Например, следующее целое число с более чем 32 битами будет преобразовано в 32-битное целое:</p> <pre class="brush: js notranslate">До: 11100110111110100000000000000110000000000001 После: 10100000000000000110000000000001</pre> |