Commit 03640c58 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

crypto/ecdsa: doc cleanup

R=golang-dev, dsymonds, r
CC=golang-dev
https://golang.org/cl/8592044
parent 0009210b
......@@ -49,7 +49,7 @@ func randFieldElement(c elliptic.Curve, rand io.Reader) (k *big.Int, err error)
return
}
// GenerateKey generates a public&private key pair.
// GenerateKey generates a public and private key pair.
func GenerateKey(c elliptic.Curve, rand io.Reader) (priv *PrivateKey, err error) {
k, err := randFieldElement(c, rand)
if err != nil {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment