From f94a2d86fb435419329481b29d11ae4a726df2c2 Mon Sep 17 00:00:00 2001 From: Richard Kho Date: Wed, 9 Sep 2015 00:12:40 -0700 Subject: [PATCH] docs(web_workers/shared/message_bus.ts): correct typo 'messsage' to 'message' Corrects the typo 'messsage' to 'message' on line 35. Closes #4085 --- 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 b2c8151098..9f64cc50d6 100644 --- a/modules/angular2/src/web_workers/shared/message_bus.ts +++ b/modules/angular2/src/web_workers/shared/message_bus.ts @@ -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(); }