From c7f3867342b41dffc3a361135dabc5cc92f888e6 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Tue, 19 Dec 2023 11:19:26 -0600 Subject: [PATCH] Correct capitalization Co-authored-by: Dominic Farolino --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d56594c..1d38354 100644 --- a/README.md +++ b/README.md @@ -583,7 +583,7 @@ const result = source.flatMap((value) => getNextInnerObservable(value)); - Forward all values emitted by the inner observable to the `result` observer. - If the inner observable completes - If there are values in the `queue` - - take the first one from the `queue` and return the the mapping step. + - Take the first one from the `queue` and return the the mapping step. - If the `queue` is empty - If `isSourceComplete` is `true` - Complete `result`.