From db62e99a735a036afda2098f1a721fe8dbf6ce76 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 6 Oct 2009 19:40:35 -0700 Subject: apply gofmt to malloc math once os R=gri DELTA=566 (4 added, 14 deleted, 548 changed) OCL=35410 CL=35419 --- src/pkg/math/tanh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/math/tanh.go') diff --git a/src/pkg/math/tanh.go b/src/pkg/math/tanh.go index 20dc5b79d..dd403a4e0 100644 --- a/src/pkg/math/tanh.go +++ b/src/pkg/math/tanh.go @@ -20,7 +20,7 @@ func Tanh(x float64) float64 { if x > 21 { return -1; } - return -Sinh(x)/Cosh(x); + return -Sinh(x) / Cosh(x); } if x > 21 { return 1; -- cgit v1.2.3