diff --git a/modules/@angular/core/src/di/provider.ts b/modules/@angular/core/src/di/provider.ts index 18f379887a..acb8f23cb3 100644 --- a/modules/@angular/core/src/di/provider.ts +++ b/modules/@angular/core/src/di/provider.ts @@ -62,7 +62,7 @@ export interface ValueProvider { useValue: any; /** - * If true, than injector returns an array of instances. This is useful to allow multiple + * If true, then injector returns an array of instances. This is useful to allow multiple * providers spread across many files to provide configuration information to a common token. * * ### Example @@ -106,7 +106,7 @@ export interface ClassProvider { useClass: Type; /** - * If true, than injector returns an array of instances. This is useful to allow multiple + * If true, then injector returns an array of instances. This is useful to allow multiple * providers spread across many files to provide configuration information to a common token. * * ### Example @@ -144,7 +144,7 @@ export interface ExistingProvider { useExisting: any; /** - * If true, than injector returns an array of instances. This is useful to allow multiple + * If true, then injector returns an array of instances. This is useful to allow multiple * providers spread across many files to provide configuration information to a common token. * * ### Example @@ -189,13 +189,13 @@ export interface FactoryProvider { useFactory: Function; /** - * A list of `token`s which need to be resolved by the injector. The list of values is than + * A list of `token`s which need to be resolved by the injector. The list of values is then * used as arguments to the `useFactory` function. */ deps?: any[]; /** - * If true, than injector returns an array of instances. This is useful to allow multiple + * If true, then injector returns an array of instances. This is useful to allow multiple * providers spread across many files to provide configuration information to a common token. * * ### Example