Fix parser extra colon (#43796)

Extra colon in the "Products:" section auto-generated file:
<img width="228" height="59" alt="Screenshot 2026-04-20 at 3 07 26 PM"
src="https://github.com/user-attachments/assets/687be6ea-71ae-45c7-a1e9-641994ee86ba"
/>

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Bug Fixes**
* Corrected formatting in product list display by removing redundant
punctuation.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Lucas Manuel Rodriguez 2026-04-20 15:35:51 -03:00 committed by GitHub
parent a0f60dc7f8
commit db3b2d34cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 71 additions and 71 deletions

File diff suppressed because one or more lines are too long

View file

@ -81,7 +81,7 @@ func generateMarkdown(vex *OpenVEXDocument) (string, error) {
}
sb.WriteString(fmt.Sprintf("- **Status notes:** %s\n", statusNotes))
}
sb.WriteString("- **Products:**: ")
sb.WriteString("- **Products:** ")
var ids []string
for _, product := range stmt.Products {
ids = append(ids, "`"+product.ID+"`")