From dd8d425fedd88970a7ee79e908eb47f6d1fcdcad Mon Sep 17 00:00:00 2001 From: Ryan Leung Date: Tue, 23 Nov 2021 03:00:32 +0000 Subject: all: fix some lint issues Make some code more simple. Change-Id: I801adf0dba5f6c515681345c732dbb907f945419 GitHub-Last-Rev: a505146baca00a1b3268d11d10510afa8cea6f1d GitHub-Pull-Request: golang/go#49626 Reviewed-on: https://go-review.googlesource.com/c/go/+/364634 Run-TryBot: Ian Lance Taylor Auto-Submit: Ian Lance Taylor Reviewed-by: Ian Lance Taylor Reviewed-by: Keith Randall TryBot-Result: Gopher Robot Reviewed-by: David Chase --- src/math/tan.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/math') diff --git a/src/math/tan.go b/src/math/tan.go index 515dd82f73..8f6e71e82b 100644 --- a/src/math/tan.go +++ b/src/math/tan.go @@ -67,10 +67,10 @@ var _tanP = [...]float64{ } var _tanQ = [...]float64{ 1.00000000000000000000e0, - 1.36812963470692954678e4, //0x40cab8a5eeb36572 - -1.32089234440210967447e6, //0xc13427bc582abc96 - 2.50083801823357915839e7, //0x4177d98fc2ead8ef - -5.38695755929454629881e7, //0xc189afe03cbe5a31 + 1.36812963470692954678e4, // 0x40cab8a5eeb36572 + -1.32089234440210967447e6, // 0xc13427bc582abc96 + 2.50083801823357915839e7, // 0x4177d98fc2ead8ef + -5.38695755929454629881e7, // 0xc189afe03cbe5a31 } // Tan returns the tangent of the radian argument x. -- cgit v1.3-5-g9baa