From 3fab15964be8afce04baece731cd61774899af19 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Mon, 5 Feb 2024 11:45:42 -0600 Subject: [PATCH] Fix typo Co-authored-by: Dominic Farolino --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index adb9770..0716e82 100644 --- a/README.md +++ b/README.md @@ -585,7 +585,7 @@ const result = source.flatMap((value, index) => - Begin **"mapping step"**: - Copy the `current index` into an `index` variable. - Increment the `current index`. - - Call the `mapping function` with the the `value` and the `index`. + - Call the `mapping function` with `value` and `index`. - Then pass the return value of the mapping function to `Observable.from()` to convert it to "inner observable" if it's not already. - Then create an `AbortSignal` that is dependent on the subscriber's and set `innerSignal`.