From 1cc7bf28c8b45796b3fd1ebf42df88d9c1f5323a Mon Sep 17 00:00:00 2001 From: Daniel Whalen Date: Thu, 9 Jan 2025 19:03:43 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d44cc38..007b622 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # egr -**egr** is a small Go package that extends [errgroup](https://pkg.go.dev/golang.org/x/sync/errgroup) with a typed channel, allowing you to push items into a queue and process them in concurrent goroutines with error propagation. The goal of the package is to provide a standard way to use errgroup, while maintaining most of its flexibility. +**egr** is a small Go package for building composable pipelines. It extends [errgroup](https://pkg.go.dev/golang.org/x/sync/errgroup) with a generic channel, allowing you to push items into a queue and process them in concurrent goroutines with error propagation. ## Installation