]> Cypherpunks repositories - gostls13.git/commitdiff
crypto: fix non-sentence in documentation for Decrypter
authorRob Pike <r@golang.org>
Thu, 2 Jul 2015 02:42:55 +0000 (12:42 +1000)
committerRob Pike <r@golang.org>
Thu, 2 Jul 2015 03:43:34 +0000 (03:43 +0000)
Comment change only.

Change-Id: I2e32c2b34d5a5659ead6d6082b06e1b039bf1147
Reviewed-on: https://go-review.googlesource.com/11852
Reviewed-by: Russ Cox <rsc@golang.org>
src/crypto/crypto.go

index 183a4bd313afb048681d1e0d0c9dfb32aee702ad..07082c41e75535a7a4955ede20140916b7daff6c 100644 (file)
@@ -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.