Merge pull request #32134 from lexfrei/fix/zero-width-spaces-plugin-comment

internal/plugin: remove zero-width spaces from plugin name comment
This commit is contained in:
Terry Howe 2026-05-21 14:53:06 -06:00 committed by GitHub
commit 16a39b73fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,5 +77,5 @@ type Output struct {
// validPluginName is a regular expression that validates plugin names.
//
// Plugin names can only contain the ASCII characters a-z, A-Z, 0-9, _ and -.
// Plugin names can only contain the ASCII characters a-z, A-Z, 0-9, _ and -.
var validPluginName = regexp.MustCompile("^[A-Za-z0-9_-]+$")