mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 19:00:46 +00:00
Fix comment
This commit is contained in:
parent
9895d052da
commit
7abac98d66
1 changed files with 1 additions and 1 deletions
|
|
@ -960,7 +960,7 @@ func decodeSingle(x byte) int {
|
||||||
// and n + m <= 30. There are 210 such valid pairs, encoded into a single byte
|
// and n + m <= 30. There are 210 such valid pairs, encoded into a single byte
|
||||||
// that avoids the forbidden range [91, 127].
|
// that avoids the forbidden range [91, 127].
|
||||||
func decodePair(x byte) (int, int) {
|
func decodePair(x byte) (int, int) {
|
||||||
// XOR with 143 remaps the forbidden bytes [91, 127] to an unused corner
|
// XOR with 143 remaps the forbidden bytes [82, 127] to an unused corner
|
||||||
// of the 16x16 grid below.
|
// of the 16x16 grid below.
|
||||||
k := int(x ^ 143)
|
k := int(x ^ 143)
|
||||||
// Split into row q and column r of a 16x16 grid. The 210 valid pairs
|
// Split into row q and column r of a 16x16 grid. The 210 valid pairs
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue