refactor: fix typos (#18000)

This commit is contained in:
Victor Berchet
2017-07-07 16:55:17 -07:00
committed by Jason Aden
parent 9dd550fa1e
commit c723d42d0a
41 changed files with 48 additions and 50 deletions

View File

@ -84,7 +84,7 @@ export interface MessageBusSink {
* Sets up a new channel on the MessageBusSink.
* MUST be called before calling to on the channel.
* If runInZone is true the sink will buffer messages and send only once the zone exits.
* if runInZone is false the sink will send messages immediatly.
* if runInZone is false the sink will send messages immediately.
*/
initChannel(channel: string, runInZone: boolean): void;

View File

@ -142,7 +142,7 @@ export function main() {
}),
500);
it('should send messages immediatly when run outside the zone',
it('should send messages immediately when run outside the zone',
inject([AsyncTestCompleter, NgZone], (async: AsyncTestCompleter, zone: MockNgZone) => {
bus = createConnectedMessageBus();
setup(false, zone);