Merge pull request #3225 from kenji-isuntv/develop

common/math: go fmt
This commit is contained in:
Péter Szilágyi 2016-11-02 18:38:22 +02:00 committed by GitHub
commit 3914e82f17
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import (
)
// wordSize is the size number of bits in a big.Int Word.
const wordSize = 32 << (uint64(^big.Word(0))>>63)
const wordSize = 32 << (uint64(^big.Word(0)) >> 63)
// Exp implement exponentiation by squaring algorithm.
//