From 53d0861372fb938a683f634c416f7184d3df09ac Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 1 Sep 2015 20:13:38 -0700 Subject: [PATCH] style(di): fix a variable name typo --- modules/angular2/src/core/di/injector.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/angular2/src/core/di/injector.ts b/modules/angular2/src/core/di/injector.ts index ce48826548..cc377fe2ce 100644 --- a/modules/angular2/src/core/di/injector.ts +++ b/modules/angular2/src/core/di/injector.ts @@ -546,8 +546,8 @@ export class Injector { */ resolveAndCreateChild(bindings: Array, depProvider: DependencyProvider = null): Injector { - var resovledBindings = Injector.resolve(bindings); - return this.createChildFromResolved(resovledBindings, depProvider); + var resolvedBindings = Injector.resolve(bindings); + return this.createChildFromResolved(resolvedBindings, depProvider); } /** @@ -578,7 +578,7 @@ export class Injector { } /** - * Instantiates an object using a resolved bindin in the context of the injector. + * Instantiates an object using a resolved binding in the context of the injector. * * @param `binding`: a resolved binding * @returns an object created using binding.