diff options
Diffstat (limited to 'src/pkg/math/fabs.go')
-rw-r--r-- | src/pkg/math/fabs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/fabs.go b/src/pkg/math/fabs.go index 752133e0c..ca78f3b59 100644 --- a/src/pkg/math/fabs.go +++ b/src/pkg/math/fabs.go @@ -9,5 +9,5 @@ func Fabs(x float64) float64 { if x < 0 { return -x } - return x; + return x } |