From 509478c832005fd9a96ef59f121847a2520b82a7 Mon Sep 17 00:00:00 2001 From: Nicholas Jamieson Date: Thu, 24 Sep 2020 12:32:04 +1000 Subject: [PATCH] chore: fix spelling in comment --- src/internal/operators/multicast.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); });