We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7357d2 commit 7d33deaCopy full SHA for 7d33dea
group.go
@@ -62,7 +62,10 @@ type Group struct {
62
// function as a "zero" struct causes panics. Multiple Options can be supplied to NewGroup
63
// to modify its behaviour e.g.:
64
//
65
-// group := parallel.NewGroup(WithSeparator("----\n"), OrderStderr(true))
+// group,_ := parallel.NewGroup(
66
+// parallel.WithStdoutSeparator("----\n"),
67
+// parallel.OrderStderr(true),
68
+// )
69
70
// Unless otherwise set the [Group] is returned with OrderRunners(true) and
71
// StderrLast(false) which results in RunFuncs optimally writing to the Group output
0 commit comments