From 97c60ed3f3e5319abeef09dab4bbe96b4641ad01 Mon Sep 17 00:00:00 2001 From: "J. Andrew Brassington" Date: Mon, 21 Sep 2015 10:51:25 -0700 Subject: [PATCH] docs(web_workers): Correct typo Typo in code block on line 229 : "angukar2" -> "angular2" Closes #4286 --- modules/angular2/docs/web_workers/web_workers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/docs/web_workers/web_workers.md b/modules/angular2/docs/web_workers/web_workers.md index 24d3fc04d5..faf59c927f 100644 --- a/modules/angular2/docs/web_workers/web_workers.md +++ b/modules/angular2/docs/web_workers/web_workers.md @@ -226,7 +226,7 @@ Once the channel has been initialized either side can use the `from` and `to` me and receive messages. Both methods return EventEmitter. Expanding on the example from earlier: ```TypeScript // index.ts, which is running on the UI. -import {bootstrap} from 'angukar2/web_worker/ui'; +import {bootstrap} from 'angular2/web_worker/ui'; var instance = bootstrap("loader.js"); var bus = instance.bus; bus.initChannel("My Custom Channel");