From 847435154c045edac8f6992f2649b2f83b8ffabe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Vaeng=20R=C3=B8tnes?= Date: Mon, 26 Feb 2024 08:50:00 +0100 Subject: [PATCH] docs: fix typo in docstring in connect.ts (#7446) --- packages/rxjs/src/internal/operators/connect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rxjs/src/internal/operators/connect.ts b/packages/rxjs/src/internal/operators/connect.ts index 06e357c498..ed903b9975 100644 --- a/packages/rxjs/src/internal/operators/connect.ts +++ b/packages/rxjs/src/internal/operators/connect.ts @@ -89,7 +89,7 @@ const DEFAULT_CONFIG: ConnectConfig = { * * @param selector A function used to set up the multicast. Gives you a multicast observable * that is not yet connected. With that, you're expected to create and return - * and Observable, that when subscribed to, will utilize the multicast observable. + * an Observable, that when subscribed to, will utilize the multicast observable. * After this function is executed -- and its return value subscribed to -- the * operator will subscribe to the source, and the connection will be made. * @param config The configuration object for `connect`.