From: Ian Lance Taylor Date: Wed, 15 Oct 2014 13:20:55 +0000 (-0700) Subject: crypto/x509: correct field name in comment X-Git-Tag: go1.4beta1~120 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a681749ab5b0f7dcb8aff4123e6e8a002e2b5d91;p=gostls13.git crypto/x509: correct field name in comment Fixes #8936. LGTM=bradfitz R=agl, bradfitz CC=golang-codereviews https://golang.org/cl/152590043 --- diff --git a/src/crypto/x509/x509.go b/src/crypto/x509/x509.go index 69a62e57d2..7a37b98e31 100644 --- a/src/crypto/x509/x509.go +++ b/src/crypto/x509/x509.go @@ -1670,7 +1670,7 @@ var oidExtensionRequest = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 9, 14} // CreateCertificateRequest creates a new certificate based on a template. The // following members of template are used: Subject, Attributes, -// SignatureAlgorithm, Extension, DNSNames, EmailAddresses, and IPAddresses. +// SignatureAlgorithm, Extensions, DNSNames, EmailAddresses, and IPAddresses. // The private key is the private key of the signer. // // The returned slice is the certificate request in DER encoding.