Fix UnmarshalJSON comment.
This commit is contained in:
parent
f1773489fc
commit
7c3c16b7be
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ func (s SignatureAlgorithm) Set(c *x509.Certificate) {
|
|||
c.SignatureAlgorithm = x509.SignatureAlgorithm(s)
|
||||
}
|
||||
|
||||
// UnmarshalJSON implements the json.Unmarshal interface and unmarshals a JSON
|
||||
// object in the Subject struct or a string as just the subject common name.
|
||||
// UnmarshalJSON implements the json.Unmarshal interface and unmarshals and
|
||||
// validates a string as a SignatureAlgorithm.
|
||||
func (s *SignatureAlgorithm) UnmarshalJSON(data []byte) error {
|
||||
name, err := unmarshalString(data)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue