Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CatalinStratu committed Dec 30, 2022
1 parent 1e79dc1 commit e6ba5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdfloader/parser2v3/parse_license.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (parser *rdfParser2_3) getAnyLicenseFromNode(node *gordfParser.Node) (AnyLi
case SPDX_SIMPLE_LICENSING_INFO:
return parser.getSimpleLicensingInfoFromNode(node)
}
return nil, fmt.Errorf("Unknown subTag (%s) found while parsing AnyLicense", nodeType)
return nil, fmt.Errorf("unknown subTag (%s) found while parsing AnyLicense", nodeType)
}

func (parser *rdfParser2_3) getLicenseExceptionFromNode(node *gordfParser.Node) (exception LicenseException, err error) {
Expand Down

0 comments on commit e6ba5c8

Please sign in to comment.