Browse Source

Run gofmt -s -w

Sargun Dhillon 8 years ago
parent
commit
c7d99f8451
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dec.go

+ 1 - 1
dec.go

@@ -104,7 +104,7 @@ var bigInt = [...]*big.Int{
 
 
 var exp10cache [64]big.Int = func() [64]big.Int {
 var exp10cache [64]big.Int = func() [64]big.Int {
 	e10, e10i := [64]big.Int{}, bigInt[1]
 	e10, e10i := [64]big.Int{}, bigInt[1]
-	for i, _ := range e10 {
+	for i := range e10 {
 		e10[i].Set(e10i)
 		e10[i].Set(e10i)
 		e10i = new(big.Int).Mul(e10i, bigInt[10])
 		e10i = new(big.Int).Mul(e10i, bigInt[10])
 	}
 	}