Skip to content

Commit 0d13cc7

Browse files
vyom1611AndrewKushnir
authored andcommitted
docs: fixing typos and grammatical errors in several documentation files (angular#47254)
- Fixes grammar issues in various markdown files, like the `DEBUG.md` or `DEVELOPER.md` PR Close angular#47254
1 parent b8fd0da commit 0d13cc7

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/BAZEL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Bazel.
1010
## Installation
1111

1212
In order to ensure that everyone builds Angular in a _consistent_ way, Bazel
13-
will be installed through NPM and therefore it's not necessary to install Bazel
13+
will be installed through NPM. It's not necessary to install Bazel
1414
manually.
1515

1616
The binaries for Bazel will be provided by the [`@bazel/bazelisk`](https://github.com/bazelbuild/bazelisk)
@@ -157,7 +157,7 @@ Of course, non-hermeticity in an action can cause problems.
157157
At worst, you can fetch a broken artifact from the cache, making your build non-reproducible.
158158
For this reason, we are careful to implement our Bazel rules to depend only on their inputs.
159159

160-
Currently we only use remote caching on CircleCI and we let Angular core developers enable remote caching to speed up their builds.
160+
Currently, we only use remote caching on CircleCI. We let Angular core developers enable remote caching to speed up their builds.
161161

162162
### Remote cache in development
163163

@@ -239,7 +239,7 @@ yarn bazel analyze-profile filename_name.profile --html --html_details --html_hi
239239

240240
This will generate a `filename_name.profile.html` file that you can open in your browser.
241241

242-
On the upper right corner that is a small table of contents with links to three areas: Tasks, Legend and Statistics.
242+
In the upper right corner that is a small table of contents with links to three areas: Tasks, Legend and Statistics.
243243

244244
In the Tasks section you will find a graph of where time is spent. Legend shows what the colors in the Tasks graph mean.
245245
Hovering over the background will show what phase that is, while hovering over bars will show more details about that specific action.

docs/DEBUG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The core packages are tested both in the browser (via Karma) and on the server (
66
## Debugging in Karma
77

88
It is useful to focus your debugging on one test at a time by changing that test to be
9-
defined using the `fit(...)` function, rather than `it(...)`. Moreover it can be helpful
9+
defined using the `fit(...)` function, rather than `it(...)`. Moreover, it can be helpful
1010
to place a `debugger` statement in this `fit` clause to cause the debugger to stop when
1111
it hits this test.
1212

@@ -16,7 +16,7 @@ document.
1616
## Debugging in Node
1717

1818
It is useful to focus your debugging on one test at a time by changing that test to be
19-
defined using the `fit(...)` function, rather than `it(...)`. Moreover it can be helpful
19+
defined using the `fit(...)` function, rather than `it(...)`. Moreover, it can be helpful
2020
to place a `debugger` statement in this `fit` clause to cause the debugger to stop when
2121
it hits this test.
2222

docs/DEBUG_COMPONENTS_REPO_IVY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Debugging the `components-repo-unit-tests` job
22

3-
Currently all changes to Ivy are validated against the test suite of the
3+
Currently, all changes to Ivy are validated against the test suite of the
44
`angular/components` repository. In order to debug the `components-repo-unit-tests` CI
55
job, the following steps can be used:
66

docs/DEVELOPER.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ following products on your development machine:
3131

3232
* [Yarn](https://yarnpkg.com) (version specified in the engines field of [`package.json`](../package.json)) which is used to install dependencies.
3333

34-
* Optional: [Java](https://openjdk.java.net/) version 7 or higher as required by [Closure Compiler](https://developers.google.com/closure/compiler). Most developers will not need this. Java is required for running some of the integration tests.
34+
* Optional: [Java](https://openjdk.java.net/) version 7 or higher than required by [Closure Compiler](https://developers.google.com/closure/compiler). Most developers will not need this. Java is required for running some integration tests.
3535

3636
## Getting the Sources
3737

@@ -146,7 +146,7 @@ $ yarn lint
146146
## Publishing Snapshot Builds
147147

148148
When a build of any branch on the upstream fork angular/angular is green on CircleCI, it
149-
automatically publishes build artifacts to repositories in the Angular org, eg. the `@angular/core`
149+
automatically publishes build artifacts to repositories in the Angular org, for example, the `@angular/core`
150150
package is published to https://github.com/angular/core-builds.
151151

152152
You may find that your un-merged change needs some validation from external participants.

docs/GITHUB_PROCESS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ decision.
5353

5454
## What if I want to implement the feature to help the Angular team?
5555

56-
Often implementing the feature as an separate package is a better option. Building an external
56+
Often implementing the feature as a separate package is a better option. Building an external
5757
package rather than including the functionality in Angular helps with:
5858

5959
- Keeping the framework's runtime smaller and simpler

0 commit comments

Comments
 (0)