summaryrefslogtreecommitdiff
path: root/libgo/go/crypto/x509/pem_decrypt.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/crypto/x509/pem_decrypt.go')
-rw-r--r--libgo/go/crypto/x509/pem_decrypt.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/crypto/x509/pem_decrypt.go b/libgo/go/crypto/x509/pem_decrypt.go
index 0388d63e149..93d1e4a922d 100644
--- a/libgo/go/crypto/x509/pem_decrypt.go
+++ b/libgo/go/crypto/x509/pem_decrypt.go
@@ -203,7 +203,7 @@ func EncryptPEMBlock(rand io.Reader, blockType string, data, password []byte, al
// the data separately, but it doesn't seem worth the additional
// code.
copy(encrypted, data)
- // See RFC 1423, section 1.1
+ // See RFC 1423, Section 1.1.
for i := 0; i < pad; i++ {
encrypted = append(encrypted, byte(pad))
}