crypto/ecdsa: doc cleanup

R=golang-dev, dsymonds, r
CC=golang-dev
https://golang.org/cl/8592044
This commit is contained in:
Brad Fitzpatrick 2013-04-13 23:09:08 -07:00
parent 0009210b2e
commit 03640c58e3
1 changed files with 1 additions and 1 deletions

View File

@ -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 {