Remove repetitive words in the docs (#4944)

Signed-off-by: cuinix <915115094@qq.com>
This commit is contained in:
cuinix
2024-03-08 20:17:53 +08:00
committed by GitHub
parent 92ff025622
commit 8cc7f2dcbf
2 changed files with 2 additions and 2 deletions

View File

@ -440,7 +440,7 @@ library Math {
// We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
//
// We can refine our estimation by noticing that the the middle of that interval minimizes the error.
// We can refine our estimation by noticing that the middle of that interval minimizes the error.
// If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
// This is going to be our x_0 (and ε_0)
xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)