From: Filippo Valsorda Date: Fri, 31 Jan 2020 22:54:21 +0000 (-0800) Subject: doc/go1.14: fix math/big.(*Int).GCD notes X-Git-Tag: go1.14rc1~15 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=53558cb721ec7a2a6f87ff87a4095e956c587e3d;p=gostls13.git doc/go1.14: fix math/big.(*Int).GCD notes GCD is a method, not a function, so the link was broken. Change-Id: Icbb09d39959e7c71a48987b15bb82febe12c3a19 Reviewed-on: https://go-review.googlesource.com/c/go/+/217303 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go1.14.html b/doc/go1.14.html index a4767d786f..2f0e67ab68 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -598,7 +598,7 @@ TODO
math/big

- The GCD function + The GCD method now allows the inputs a and b to be zero or negative.