From 1fba78b12a77fba58da9528f5d9b92aad78c11bb Mon Sep 17 00:00:00 2001 From: Artur Meyster Date: Tue, 8 Sep 2015 22:43:10 -0700 Subject: [PATCH] docs(web_workers/shared/message_bus.ts): correct typo Closes #4076 --- modules/angular2/src/web_workers/shared/message_bus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/web_workers/shared/message_bus.ts b/modules/angular2/src/web_workers/shared/message_bus.ts index 3cf683ee11..7791c90623 100644 --- a/modules/angular2/src/web_workers/shared/message_bus.ts +++ b/modules/angular2/src/web_workers/shared/message_bus.ts @@ -20,7 +20,7 @@ export /* abstract (with TS 1.6) */ class MessageBus implements MessageBusSource * If runInZone is true then the source will emit events inside the angular zone * and the sink will buffer messages and send only once the zone exits. * if runInZone is false then the source will emit events inside the global zone - * and the sink will send messages immediatly. + * and the sink will send messages immediately. */ initChannel(channel: string, runInZone: boolean = true): void { throw _abstract(); }