diff options
| author | Nicolas Hillegeer <aktau@google.com> | 2022-03-28 17:40:23 -0700 |
|---|---|---|
| committer | Nicolas Hillegeer <aktau@google.com> | 2022-03-29 06:58:14 -0700 |
| commit | 50b8f490e1701773254fdbfe0e3fea00ff1f2a68 (patch) | |
| tree | 04ec11644acabbc5a1c78cb261891334a788ea05 /src/math/big | |
| parent | 0af0e193680d4688e1f09c5ca315740571b03eea (diff) | |
| parent | c3fcd0117784ac05e35120ac0de6c960b400a31e (diff) | |
| download | go-50b8f490e1701773254fdbfe0e3fea00ff1f2a68.tar.xz | |
[dev.boringcrypto] all: merge master into dev.boringcrypto
Change-Id: I04d511ed8e3e7ca4a3267f226a0c3e248c0f84a9
Diffstat (limited to 'src/math/big')
| -rw-r--r-- | src/math/big/nat.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/big/nat.go b/src/math/big/nat.go index 140c619c8c..512b2c229f 100644 --- a/src/math/big/nat.go +++ b/src/math/big/nat.go @@ -341,7 +341,7 @@ func karatsuba(z, x, y nat) { karatsuba(p, xd, yd) // save original z2:z0 - // (ok to use upper half of z since we're done recursing) + // (ok to use upper half of z since we're done recurring) r := z[n*4:] copy(r, z[:n*2]) |
