Fix wording

This commit is contained in:
2021-08-08 19:15:56 +02:00
parent 5982269b37
commit 755cc08442

View File

@ -49,7 +49,7 @@ func main() {
var compatible []tagcmp.Tag
for _, rawTag := range rawTags {
parsed, _ := tagcmp.Parse(rawTag) // skipped unsupported tags
parsed, _ := tagcmp.Parse(rawTag) // skips unsupported tags
if tag.IsCompatible(parsed) {
compatible = append(compatible, parsed)
}