瀏覽代碼

Merge pull request #3225 from kenji-isuntv/develop

common/math: go fmt
Péter Szilágyi 9 年之前
父節點
當前提交
3914e82f17
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      common/math/exp.go

+ 1 - 1
common/math/exp.go

@@ -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.
 //