aboutsummaryrefslogtreecommitdiff
path: root/plugin/pkg/uniq/uniq.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/pkg/uniq/uniq.go')
-rw-r--r--plugin/pkg/uniq/uniq.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/pkg/uniq/uniq.go b/plugin/pkg/uniq/uniq.go
index c3fdb5211..5f95e41d2 100644
--- a/plugin/pkg/uniq/uniq.go
+++ b/plugin/pkg/uniq/uniq.go
@@ -28,7 +28,7 @@ func (u U) Unset(key string) {
delete(u.u, key)
}
-// ForEach iterates for u executes f for each element that is 'todo' and sets it to 'done'.
+// ForEach iterates over u and executes f for each element that is 'todo' and sets it to 'done'.
func (u U) ForEach() error {
for k, v := range u.u {
if v.state == todo {