Skip to content

Commit 042ee75

Browse files
samuel-knutsonalxhub
authored andcommitted
docs: fix spelling of "set up" (angular#58362)
Fix spelling of the word "set up" in docs. "Setup" (one word) is a noun whereas "set up" (two words) is a verb. Fixes angular#58361 PR Close angular#58362
1 parent 9723f03 commit 042ee75

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

adev/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The content is written primarily in Markdown format located in `src/content`. Fo
66

77
## Local Development
88

9-
For local development, [yarn](https://yarnpkg.com/) is the preferred package manager. You can setup a local environment with the following commands
9+
For local development, [yarn](https://yarnpkg.com/) is the preferred package manager. You can set up a local environment with the following commands
1010
:
1111

1212
```bash

adev/src/content/best-practices/runtime-performance/zone-pollution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AppComponent implements OnInit {
3535

3636
The preceding snippet instructs Angular to call `setInterval` outside the Angular Zone and skip running change detection after `pollForUpdates` runs.
3737

38-
Third-party libraries commonly trigger unnecessary change detection cycles when their APIs are invoked within the Angular zone. This phenomenon particularly affects libraries that setup event listeners or initiate other tasks (such as timers, XHR requests, etc.). Avoid these extra cycles by calling library APIs outside the Angular zone:
38+
Third-party libraries commonly trigger unnecessary change detection cycles when their APIs are invoked within the Angular zone. This phenomenon particularly affects libraries that set up event listeners or initiate other tasks (such as timers, XHR requests, etc.). Avoid these extra cycles by calling library APIs outside the Angular zone:
3939

4040
<docs-code header="Move the plot initialization outside of the Zone" language='ts' linenums>
4141
import { Component, NgZone, OnInit } from '@angular/core';

adev/src/content/guide/templates/two-way-binding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To use two-way binding with native form controls, you need to:
3636
1. Use the `ngModel` directive with the two-way binding syntax (e.g., `[(ngModel)]`)
3737
1. Assign it the state that you want it to update (e.g., `firstName`)
3838

39-
Once that is setup, Angular will ensure that any updates in the text input will reflect correctly inside of the component state!
39+
Once that is set up, Angular will ensure that any updates in the text input will reflect correctly inside of the component state!
4040

4141
Learn more about [`NgModel`](guide/directives#displaying-and-updating-properties-with-ngmodel) in the official docs.
4242

adev/src/content/introduction/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you just want to play around with Angular in your browser without setting up
1313
</docs-card>
1414
</docs-card-container>
1515

16-
## Setup a new project locally
16+
## Set up a new project locally
1717

1818
If you're starting a new project, you'll most likely want to create a local project so that you can use tooling such as Git.
1919

adev/src/content/reference/errors/NG0403.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ platformBrowser().bootstrapModule(AppModule);
3535

3636
## Debugging the error
3737

38-
Please make sure that the NgModule that is used for bootstrapping is setup correctly:
38+
Please make sure that the NgModule that is used for bootstrapping is set up correctly:
3939

4040
- either the `bootstrap` property exists (and contains a non-empty array) in the `@NgModule` annotation
4141
- or the `ngDoBootstrap` method exists on the NgModule class

adev/src/content/tools/cli/end-to-end.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
End-to-end or (E2E) testing is a form of testing used to assert your entire application works as expected from start to finish or _"end-to-end"_. E2E testing differs from unit testing in that it is completely decoupled from the underlying implementation details of your code. It is typically used to validate an application in a way that mimics the way a user would interact with it. This page serves as a guide to getting started with end-to-end testing in Angular using the Angular CLI.
44

5-
## Setup E2E Testing
5+
## Set Up E2E Testing
66

77
The Angular CLI downloads and installs everything you need to run end-to-end tests for your Angular application.
88

adev/src/content/tutorials/learn-angular/steps/12-enable-routing/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
For most apps, there comes a point where the app requires more than a single page. When that time inevitably comes, routing becomes a big part of the performance story for users.
44

5-
In this activity, you'll learn how to setup and configure your app to use Angular Router.
5+
In this activity, you'll learn how to set up and configure your app to use Angular Router.
66

77
<hr>
88

@@ -71,6 +71,6 @@ export class AppComponent {}
7171

7272
</docs-workflow>
7373

74-
Your app is now setup to use Angular Router. Nice work! 🙌
74+
Your app is now set up to use Angular Router. Nice work! 🙌
7575

7676
Keep the momentum going to learn the next step of defining the routes for our app.

adev/src/content/tutorials/learn-angular/steps/15-forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Forms are a big part of many apps because they enable your app to accept user in
44

55
In Angular, there are two types of forms: template-driven and reactive. You'll learn about both over the next few activities.
66

7-
In this activity, you'll learn how to setup a form using a template-driven approach.
7+
In this activity, you'll learn how to set up a form using a template-driven approach.
88

99
<hr>
1010

adev/src/content/tutorials/learn-angular/steps/16-form-control-values/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting form control value
22

3-
Now that your forms are setup with Angular, the next step is to access the values from the form controls.
3+
Now that your forms are set up with Angular, the next step is to access the values from the form controls.
44

55
In this activity, you'll learn how to get the value from your form input.
66

adev/src/content/tutorials/learn-angular/steps/17-reactive-forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
When you want to manage your forms programmatically instead of relying purely on the template, reactive forms are the answer.
44

5-
In this activity, you'll learn how to setup reactive forms.
5+
In this activity, you'll learn how to set up reactive forms.
66

77
<hr>
88

0 commit comments

Comments
 (0)