From 8078601d8cd108ad7a0c10c52f7e87423a656fcf Mon Sep 17 00:00:00 2001 From: destel Date: Sat, 23 Nov 2024 21:00:03 +0200 Subject: [PATCH] Minor text tweaks --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c5415e7..862d395 100644 --- a/README.md +++ b/README.md @@ -360,7 +360,7 @@ and then merges all these streams together. In the example below, **FlatMap** transforms each department into a stream of users, then merges these streams into one. Like other Rill functions, **FlatMap** gives full control over concurrency. -In this particular case the concurrency level is 3, meaning that users are fetched from up to 3 departments at the same time. +In this particular case the concurrency level is 3, meaning that users are fetched from at most 3 departments at the same time. Additionally, this example demonstrates how to write a reusable streaming wrapper over paginated API calls - the `StreamUsers` function. This wrapper can be useful both on its own and as part of larger pipelines.