Skip to content

Commit

Permalink
fix nits
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhenLian authored and joeljeske committed Feb 4, 2023
1 parent fe1c6e0 commit ef8db0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security/advancedtls/advancedtls.go
Expand Up @@ -318,7 +318,7 @@ func (o *ServerOptions) config() (*tls.Config, error) {
return nil, fmt.Errorf("GetIdentityCertificatesForClient cannot be specified on the server side")
}
if o.VersionOptions.MinVersion > o.VersionOptions.MaxVersion {
return nil, fmt.Errorf("Minumum TLS version is larger than maximum TLS version")
return nil, fmt.Errorf("the minimum TLS version is larger than maximum TLS version")
}
clientAuth := tls.NoClientCert
if o.RequireClientCert {
Expand Down

0 comments on commit ef8db0b

Please sign in to comment.