docs(web_workers/shared/message_bus.ts): correct typo 'messsage' to 'message'

Corrects the typo 'messsage' to 'message' on line 35.
Closes #4085
This commit is contained in:
Richard Kho 2015-09-09 00:12:40 -07:00 committed by Misko Hevery
parent 55358a39dc
commit f94a2d86fb
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export /* abstract (with TS 1.6) */ class MessageBus implements MessageBusSource
attachToZone(zone: NgZone): void { throw _abstract(); }
/**
* Returns an {@link EventEmitter} that emits every time a messsage
* Returns an {@link EventEmitter} that emits every time a message
* is received on the given channel.
*/
from(channel: string): EventEmitter { throw _abstract(); }