crypto/x509: fix spelling/grammar in comments

Also tweak one of the comment lines to fit in 80 characters.

Change-Id: I9c6d2028c29318ba9264486590056cb1ffc8219e
Reviewed-on: https://go-review.googlesource.com/34655
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Kevin Burke 2016-12-19 20:53:45 -08:00 committed by Brad Fitzpatrick
parent 3357daa96e
commit c5f16d4e40

View file

@ -83,7 +83,7 @@ func execSecurityRoots() (*CertPool, error) {
// to the "if hasPolicy" check below, though, we will rarely // to the "if hasPolicy" check below, though, we will rarely
// (or never) call verify-cert on stock macOS systems, though. // (or never) call verify-cert on stock macOS systems, though.
// The hope is that we only call verify-cert when the user has // The hope is that we only call verify-cert when the user has
// tweaked their trust poliy. These 4 goroutines are only // tweaked their trust policy. These 4 goroutines are only
// defensive in the pathological case of many trust edits. // defensive in the pathological case of many trust edits.
for i := 0; i < 4; i++ { for i := 0; i < 4; i++ {
wg.Add(1) wg.Add(1)
@ -195,9 +195,9 @@ func getCertsWithTrustPolicy() (map[string]bool, error) {
// `security trust-settings-export` command // `security trust-settings-export` command
// fails with: // fails with:
// exit status 1, SecTrustSettingsCreateExternalRepresentation: No Trust Settings were found. // exit status 1, SecTrustSettingsCreateExternalRepresentation: No Trust Settings were found.
// Rather than match on English substrings that are probably localized // Rather than match on English substrings that are probably
// on macOS, just treat interpret any failure as meaning that there are // localized on macOS, just interpret any failure to mean that
// no trust settings. // there are no trust settings.
if debugExecDarwinRoots { if debugExecDarwinRoots {
println(fmt.Sprintf("crypto/x509: exec %q: %v, %s", cmd.Args, err, stderr.Bytes())) println(fmt.Sprintf("crypto/x509: exec %q: %v, %s", cmd.Args, err, stderr.Bytes()))
} }