Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(core): fix typo #14299

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions modules/@angular/core/src/di/provider.ts
Expand Up @@ -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
Expand Down Expand Up @@ -106,7 +106,7 @@ export interface ClassProvider {
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.
*
* ### Example
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down