diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-03-14 18:26:20 +0300 |
---|---|---|
committer | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-03-15 11:41:42 +0300 |
commit | 08dc1a1e60063705ccefc1eb4ef0a17d1ddf196b (patch) | |
tree | 034e9bd9b9f9484b499acd21edd1b5cdc5090035 /files/ru/web/javascript/reference/global_objects/math/atanh | |
parent | ecd81e5f73adf6fef6fc0067f50d088a51c32f6a (diff) | |
download | translated-content-08dc1a1e60063705ccefc1eb4ef0a17d1ddf196b.tar.gz translated-content-08dc1a1e60063705ccefc1eb4ef0a17d1ddf196b.tar.bz2 translated-content-08dc1a1e60063705ccefc1eb4ef0a17d1ddf196b.zip |
Fix typos
Diffstat (limited to 'files/ru/web/javascript/reference/global_objects/math/atanh')
-rw-r--r-- | files/ru/web/javascript/reference/global_objects/math/atanh/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/math/atanh/index.html b/files/ru/web/javascript/reference/global_objects/math/atanh/index.html index 55aabd470e..cbdaeae2d2 100644 --- a/files/ru/web/javascript/reference/global_objects/math/atanh/index.html +++ b/files/ru/web/javascript/reference/global_objects/math/atanh/index.html @@ -48,7 +48,7 @@ Math.atanh(2); // NaN <p>Для значений, меньших -1 или больших 1, метод <code>Math.atanh()</code> возвращает {{jsxref("NaN")}}.</p> -<h2 id="Polyfill" name="Polyfill">Полифилл</h2> +<h2 id="Polyfill" name="Polyfill">Полифил</h2> <p>Для <math><semantics><mrow><mrow><mo>|</mo><mi>x</mi><mo>|</mo></mrow><mo><</mo><mn>1</mn></mrow><annotation encoding="TeX">\left|x\right| < 1</annotation></semantics></math>, мы имеем <math><semantics><mrow><mo lspace="0em" rspace="thinmathspace">artanh</mo><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mfrac><mn>1</mn><mn>2</mn></mfrac><mo lspace="0em" rspace="0em">ln</mo><mrow><mo>(</mo><mfrac><mrow><mn>1</mn><mo>+</mo><mi>x</mi></mrow><mrow><mn>1</mn><mo>-</mo><mi>x</mi></mrow></mfrac><mo>)</mo></mrow></mrow><annotation encoding="TeX">\operatorname {artanh} (x) = \frac{1}{2}\ln \left( \frac{1 + x}{1 - x} \right)</annotation></semantics></math>, так что этот метод может эмулироваться следующим образом:</p> |