Add godot linter to harmonitze toplevel comments (#3650)

This commit is contained in:
Robert Kaussow
2024-05-13 22:58:21 +02:00
committed by GitHub
parent 83eba294c7
commit 89e100cfd1
144 changed files with 302 additions and 302 deletions

View File

@@ -53,7 +53,7 @@ type fifo struct {
// New returns a new fifo queue.
//
//nolint:gomnd
//nolint:mnd
func New(_ context.Context) Queue {
return &fifo{
workers: map[*worker]struct{}{},
@@ -225,7 +225,7 @@ func (q *fifo) Info(_ context.Context) InfoT {
return stats
}
// Pause stops the queue from handing out new work items in Poll
// Pause stops the queue from handing out new work items in Poll.
func (q *fifo) Pause() {
q.Lock()
q.paused = true