diff --git a/src/internal/operators/multicast.ts b/src/internal/operators/multicast.ts index 5f3271516f..799cab3dfe 100644 --- a/src/internal/operators/multicast.ts +++ b/src/internal/operators/multicast.ts @@ -48,7 +48,7 @@ export function multicast( // Intentionally terse code: Subscribe to the result of the selector, // then immediately connect the source through the subject, adding // that to the resulting subscription. The act of subscribing with `this`, - // the primary destination subscriber, will automatically add the subcription + // the primary destination subscriber, will automatically add the subscription // to the result. selector(subject).subscribe(subscriber).add(source.subscribe(subject)); });