docs(core): fix typo (#14299)
Replace `than` with `then`. PR Close #14299
This commit is contained in:
parent
e9a89c0693
commit
701074cf89
|
@ -62,7 +62,7 @@ export interface ValueProvider {
|
||||||
useValue: any;
|
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.
|
* providers spread across many files to provide configuration information to a common token.
|
||||||
*
|
*
|
||||||
* ### Example
|
* ### Example
|
||||||
|
@ -106,7 +106,7 @@ export interface ClassProvider {
|
||||||
useClass: Type<any>;
|
useClass: Type<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.
|
* providers spread across many files to provide configuration information to a common token.
|
||||||
*
|
*
|
||||||
* ### Example
|
* ### Example
|
||||||
|
@ -144,7 +144,7 @@ export interface ExistingProvider {
|
||||||
useExisting: any;
|
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.
|
* providers spread across many files to provide configuration information to a common token.
|
||||||
*
|
*
|
||||||
* ### Example
|
* ### Example
|
||||||
|
@ -189,13 +189,13 @@ export interface FactoryProvider {
|
||||||
useFactory: Function;
|
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.
|
* used as arguments to the `useFactory` function.
|
||||||
*/
|
*/
|
||||||
deps?: any[];
|
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.
|
* providers spread across many files to provide configuration information to a common token.
|
||||||
*
|
*
|
||||||
* ### Example
|
* ### Example
|
||||||
|
|
Loading…
Reference in New Issue