From: Rob Pike Date: Thu, 2 Jul 2015 02:42:55 +0000 (+1000) Subject: crypto: fix non-sentence in documentation for Decrypter X-Git-Tag: go1.5beta1~20 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d16c7f8004bd1c9f896367af7ea86f5530596b39;p=gostls13.git crypto: fix non-sentence in documentation for Decrypter Comment change only. Change-Id: I2e32c2b34d5a5659ead6d6082b06e1b039bf1147 Reviewed-on: https://go-review.googlesource.com/11852 Reviewed-by: Russ Cox --- diff --git a/src/crypto/crypto.go b/src/crypto/crypto.go index 183a4bd313..07082c41e7 100644 --- a/src/crypto/crypto.go +++ b/src/crypto/crypto.go @@ -126,8 +126,8 @@ type SignerOpts interface { } // Decrypter is an interface for an opaque private key that can be used for -// asymmetric decryption operations. For example, an RSA key kept in a hardware -// module. +// asymmetric decryption operations. An example would be an RSA key +// kept in a hardware module. type Decrypter interface { // Public returns the public key corresponding to the opaque, // private key.