summaryrefslogtreecommitdiff
path: root/src/pkg/big/int.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/big/int.go')
-rw-r--r--src/pkg/big/int.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/big/int.go b/src/pkg/big/int.go
index 5db4f0901..235becfeb 100644
--- a/src/pkg/big/int.go
+++ b/src/pkg/big/int.go
@@ -27,9 +27,7 @@ func (z *Int) New(x int64) *Int {
// NewInt allocates and returns a new Int set to x.
-func NewInt(x int64) *Int {
- return new(Int).New(x);
-}
+func NewInt(x int64) *Int { return new(Int).New(x) }
// Set sets z to x.