From 31e791a3329a4dc1c8d6ed43668a18507205ca49 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Tue, 19 Dec 2023 11:24:27 -0600 Subject: [PATCH] More descriptive grammar Co-authored-by: Dominic Farolino --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed82639..4c7f491 100644 --- a/README.md +++ b/README.md @@ -578,7 +578,7 @@ const result = source.flatMap((value) => getNextInnerObservable(value)); - Call the mapping function with the the value. - 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 follows the subscriber's and set `innerSignal`. + - Then create an `AbortSignal` that is dependent on the subscriber's and set `innerSignal`. - Pass the `innerSignal` to the subscribe for the inner observable. - Forward all values emitted by the inner observable to the `result` observer. - If the inner observable completes