docs(web_workers/shared/message_bus.ts): correct typo

Closes #4076
This commit is contained in:
Artur Meyster 2015-09-08 22:43:10 -07:00 committed by Misko Hevery
parent 80a04b4323
commit 1fba78b12a
1 changed files with 1 additions and 1 deletions

View File

@ -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(); }