From: Adam Langley Date: Wed, 30 Jun 2010 22:05:38 +0000 (-0400) Subject: x509: fix English. X-Git-Tag: weekly.2010-07-01~16 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=269df5827010fa29822d0ed655e104b559f1e870;p=gostls13.git x509: fix English. (addressing comments from 1741045) R=r CC=golang-dev https://golang.org/cl/1678047 --- diff --git a/src/pkg/crypto/x509/x509.go b/src/pkg/crypto/x509/x509.go index c4c79eb0de..23b7d0b629 100644 --- a/src/pkg/crypto/x509/x509.go +++ b/src/pkg/crypto/x509/x509.go @@ -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) {