diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-23 04:31:11 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-23 04:31:11 +0000 |
commit | fb08d0057f91d420b6f48c112264fc87dc91b532 (patch) | |
tree | 46bb86f514fbf6bad82da48e69a18fb09d878834 /libgo/go/math/hypot.go | |
parent | f507227a181bb31fa87d23a082485f99f3ef9183 (diff) | |
download | ppe42-gcc-fb08d0057f91d420b6f48c112264fc87dc91b532.tar.gz ppe42-gcc-fb08d0057f91d420b6f48c112264fc87dc91b532.zip |
libgo: Update to current sources.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192704 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/go/math/hypot.go')
-rw-r--r-- | libgo/go/math/hypot.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/math/hypot.go b/libgo/go/math/hypot.go index 57d8e343720..a6fa84c7655 100644 --- a/libgo/go/math/hypot.go +++ b/libgo/go/math/hypot.go @@ -8,7 +8,7 @@ package math Hypot -- sqrt(p*p + q*q), but overflows only if the result does. */ -// Hypot computes Sqrt(p*p + q*q), taking care to avoid +// Hypot returns Sqrt(p*p + q*q), taking care to avoid // unnecessary overflow and underflow. // // Special cases are: |