Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bandreghetti committed Feb 9, 2021
1 parent 6655bb8 commit 37b021b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/generateKey.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func GenerateKey(asset map[string]interface{}) (string, errors.ICCError) {
} else {
propAsArray, ok = propInterface.([]interface{})
if !ok {
return "", errors.NewCCError(fmt.Sprintf("asset property %s must and array of type %s", prop.Label, prop.DataType), 400)
return "", errors.NewCCError(fmt.Sprintf("asset property %s must an array of type %s", prop.Label, prop.DataType), 400)
}
}

Expand Down

0 comments on commit 37b021b

Please sign in to comment.