Commit 120f3b7b authored by David G. Andersen's avatar David G. Andersen Committed by Russ Cox

math/big: Correcting typo in SetBit() documentation

z is set to x+bit change, not z+bit change

R=golang-dev
CC=golang-dev
https://golang.org/cl/5374056
parent e9e874b7
...@@ -685,7 +685,7 @@ func (z *Int) Bit(i int) uint { ...@@ -685,7 +685,7 @@ func (z *Int) Bit(i int) uint {
return z.abs.bit(uint(i)) return z.abs.bit(uint(i))
} }
// SetBit sets the i'th bit of z to bit and returns z. // SetBit sets z to x, with x's i'th bit set to b (0 or 1).
// That is, if bit is 1 SetBit sets z = x | (1 << i); // That is, if bit is 1 SetBit sets z = x | (1 << i);
// if bit is 0 it sets z = x &^ (1 << i). If bit is not 0 or 1, // if bit is 0 it sets z = x &^ (1 << i). If bit is not 0 or 1,
// SetBit will panic. // SetBit will panic.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment