From 46f24126044d3c1c9cad49a646bfb3ebb623e6a1 Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Fri, 6 Sep 2024 15:17:33 -0700 Subject: [PATCH] Fix the doc comment on Single --- single.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/single.go b/single.go index 956818c..7f7cedb 100644 --- a/single.go +++ b/single.go @@ -1,6 +1,6 @@ package taskgroup -// A single manages a single background goroutine. The task is started when the +// A Single manages a single background goroutine. The task is started when the // value is first created, and the caller can use the Wait method to block // until it has exited. type Single[T any] struct {