From 701074cf890fbf5ee4e78b3ea521be491a45a571 Mon Sep 17 00:00:00 2001 From: Gerd Jungbluth Date: Sat, 4 Feb 2017 14:41:18 +0100 Subject: [PATCH] docs(core): fix typo (#14299) Replace `than` with `then`. PR Close #14299 --- modules/@angular/core/src/di/provider.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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