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

Closes #4109
This commit is contained in:
Timur Meyster 2015-09-09 21:49:33 -07:00 committed by Misko Hevery
parent 16ecc7e82d
commit fc82700364
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ export function spawnWebWorker(uri: string): WebWorkerInstance {
/**
* Wrapper class that exposes the {@link WebWorkerApplication}
* Isolate instance and underyling {@link MessageBus} for lower level message passing.
* Isolate instance and underlying {@link MessageBus} for lower level message passing.
*/
export class WebWorkerInstance {
constructor(public app: WebWorkerApplication, public worker: Worker, public bus: MessageBus) {}