diff --git a/src/operators/share.ts b/src/operators/share.ts index 57dbcb33b0..49d7988325 100644 --- a/src/operators/share.ts +++ b/src/operators/share.ts @@ -13,7 +13,7 @@ function shareSubjectFactory() { * Returns a new Observable that multicasts (shares) the original Observable. As long as there is at least one * Subscriber this Observable will be subscribed and emitting data. When all subscribers have unsubscribed it will * unsubscribe from the source Observable. Because the Observable is multicasting it makes the stream `hot`. - * This is an alias for .publish().refCount(). + * This is an alias for .multicast(() => new Subject()).refCount(). * * *