From 96c1eb3bc2a65bef035095d67037c527d4cc6397 Mon Sep 17 00:00:00 2001 From: Chen Su Date: Tue, 23 Jul 2024 11:09:51 +0800 Subject: [PATCH] doc: update readme. Signed-off-by: Chen Su --- README-CN.md | 1 + README.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README-CN.md b/README-CN.md index 99f6aa4..3cec8d3 100644 --- a/README-CN.md +++ b/README-CN.md @@ -60,6 +60,7 @@ out, err := async.All(func (ctx context.Context) (int, error) { - [`Race`](https://pkg.go.dev/github.com/ghosind/go-async#Race) - [`Retry`](https://pkg.go.dev/github.com/ghosind/go-async#Retry) - [`Seq`](https://pkg.go.dev/github.com/ghosind/go-async#Seq) +- [`SeqGroups`](https://pkg.go.dev/github.com/ghosind/go-async#SeqGroups) - [`Series`](https://pkg.go.dev/github.com/ghosind/go-async#Series) - [`Times`](https://pkg.go.dev/github.com/ghosind/go-async#Times) - [`TimesLimit`](https://pkg.go.dev/github.com/ghosind/go-async#TimesLimit) diff --git a/README.md b/README.md index 95fc27b..e254067 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ The most of utility functions of this library accept any type of function to run For all functions, you can use the `XXXWithContext` function (like `AllWithContext`, `RaceWithContext`, ...) to set the context by yourself. -## Available Utility Functions +## Available Functions - [`All`](https://pkg.go.dev/github.com/ghosind/go-async#All) - [`AllCompleted`](https://pkg.go.dev/github.com/ghosind/go-async#AllCompleted) @@ -62,6 +62,7 @@ For all functions, you can use the `XXXWithContext` function (like `AllWithConte - [`Race`](https://pkg.go.dev/github.com/ghosind/go-async#Race) - [`Retry`](https://pkg.go.dev/github.com/ghosind/go-async#Retry) - [`Seq`](https://pkg.go.dev/github.com/ghosind/go-async#Seq) +- [`SeqGroups`](https://pkg.go.dev/github.com/ghosind/go-async#SeqGroups) - [`Series`](https://pkg.go.dev/github.com/ghosind/go-async#Series) - [`Times`](https://pkg.go.dev/github.com/ghosind/go-async#Times) - [`TimesLimit`](https://pkg.go.dev/github.com/ghosind/go-async#TimesLimit)