]> Cypherpunks repositories - gostls13.git/commitdiff
x509: fix English.
authorAdam Langley <agl@golang.org>
Wed, 30 Jun 2010 22:05:38 +0000 (18:05 -0400)
committerAdam Langley <agl@golang.org>
Wed, 30 Jun 2010 22:05:38 +0000 (18:05 -0400)
        (addressing comments from 1741045)

R=r
CC=golang-dev
https://golang.org/cl/1678047

src/pkg/crypto/x509/x509.go

index c4c79eb0de5a85caa7f9aa31e2c7479d77ec54c1..23b7d0b629bc1122bff3591177334fffec3c6f5e 100644 (file)
@@ -761,8 +761,8 @@ var (
 // MaxPathLen, SubjectKeyId, DNSNames.
 //
 // The certificate is signed by parent. If parent is equal to template then the
-// certificate is self-signed. pub is the public key of the signee. priv is the
-// private key of the signer.
+// certificate is self-signed. The parameter pub is the public key of the
+// signee and priv is the private key of the signer.
 //
 // The returned slice is the certificate in DER encoding.
 func CreateCertificate(rand io.Reader, template, parent *Certificate, pub *rsa.PublicKey, priv *rsa.PrivateKey) (cert []byte, err os.Error) {