From 8a14946fb031f4bf6096242b5e6ae6f7316d47d8 Mon Sep 17 00:00:00 2001 From: xieyuschen Date: Wed, 28 May 2025 18:52:56 +0800 Subject: [PATCH] errgroup: remove duplicated comment Change-Id: I5cdcc5034ccd87b939a406693e97485553ab60fa Reviewed-on: https://go-review.googlesource.com/c/sync/+/676715 Reviewed-by: Dmitri Shuralyov Reviewed-by: Alan Donovan Auto-Submit: Alan Donovan LUCI-TryBot-Result: Go LUCI --- errgroup/errgroup.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/errgroup/errgroup.go b/errgroup/errgroup.go index a6b6ad2..cb6bb9a 100644 --- a/errgroup/errgroup.go +++ b/errgroup/errgroup.go @@ -76,10 +76,8 @@ func (g *Group) Wait() error { } // Go calls the given function in a new goroutine. -// The first call to Go must happen before a Wait. -// It blocks until the new goroutine can be added without the number of -// active goroutines in the group exceeding the configured limit. // +// The first call to Go must happen before a Wait. // It blocks until the new goroutine can be added without the number of // goroutines in the group exceeding the configured limit. //