Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect function names in README sample code #10

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ For the more complex chore of running work that produces results which are aggre
* `parallel.CollectWithErrs[T](executor)`, for `func(context.Context) (T, error)`
* `MultiError`-returning version of `Collect[T]` which, like `GatherErrs`, does not halt when an error occurs
```go
group := parallel.Collect[int](parallel.Unlimited(ctx))
group := parallel.CollectWithErrs[int](parallel.Unlimited(ctx))
group.Go(func(ctx context.Context) (int, error) {
return 1, nil
})
Expand All @@ -164,7 +164,7 @@ For the more complex chore of running work that produces results which are aggre
* `MultiError`-returning version of `Feed`
```go
result := make(map[int]bool)
group := parallel.FeedWithErr(parallel.Unlimited(ctx),
group := parallel.FeedWithErrs(parallel.Unlimited(ctx),
func(ctx context.Context, n int) error {
// values from the functions sent to the group end up here,
// but only if there was no error!
Expand Down
Loading