Skip to content

Commit

Permalink
fix: remove repetitive words (#4701)
Browse files Browse the repository at this point in the history
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

...

<!-- Why is this change being made? -->

...

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

...

Signed-off-by: standstaff <zhengxingru@yeah.net>
  • Loading branch information
standstaff committed Mar 15, 2024
1 parent 6f356ff commit 994d01a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/middleware/middleware.go
Expand Up @@ -4,6 +4,6 @@ package middleware
import "github.com/goreleaser/goreleaser/pkg/context"

// Action is a function that takes a context and returns an error.
// It is is used on Pipers, Defaulters and Publishers, although they are not
// It is used on Pipers, Defaulters and Publishers, although they are not
// aware of this generalization.
type Action func(ctx *context.Context) error
2 changes: 1 addition & 1 deletion internal/pipe/winget/winget.go
Expand Up @@ -20,7 +20,7 @@ import (
)

var (
errNoRepoName = pipe.Skip("winget.repository.name name is required")
errNoRepoName = pipe.Skip("winget.repository.name is required")
errNoPublisher = pipe.Skip("winget.publisher is required")
errNoLicense = pipe.Skip("winget.license is required")
errNoShortDescription = pipe.Skip("winget.short_description is required")
Expand Down

0 comments on commit 994d01a

Please sign in to comment.