Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 5bc09b6

Browse files
docs(guide/E2E Testing): add '-' to 'end-to-end'
Closes #10458
1 parent d8a95a9 commit 5bc09b6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/content/guide/e2e-testing.ngdoc

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
# E2E Testing
77

88
<div class="alert alert-danger">
9-
**Note:** In the past, end to end testing could be done with a deprecated tool called
9+
**Note:** In the past, end-to-end testing could be done with a deprecated tool called
1010
[Angular Scenario Runner](http://code.angularjs.org/1.2.16/docs/guide/e2e-testing). That tool
1111
is now in maintenance mode.
1212
</div>
1313

1414
As applications grow in size and complexity, it becomes unrealistic to rely on manual testing to
1515
verify the correctness of new features, catch bugs and notice regressions. End to end tests
1616
are the first line of defense for catching bugs, but sometimes issues come up with integration
17-
between components which can't be captured in a unit test. End to end tests are made to find
17+
between components which can't be captured in a unit test. End-to-end tests are made to find
1818
these problems.
1919

2020
We have built [Protractor](https://github.com/angular/protractor), an end
@@ -23,7 +23,7 @@ Angular application.
2323

2424
## Using Protractor
2525

26-
Protractor is a [Node.js](http://nodejs.org) program, and runs end to end tests that are also
26+
Protractor is a [Node.js](http://nodejs.org) program, and runs end-to-end tests that are also
2727
written in JavaScript and run with node. Protractor uses [WebDriver](https://code.google.com/p/selenium/wiki/GettingStarted)
2828
to control browsers and simulate user actions.
2929

@@ -76,8 +76,8 @@ filter the list of items.
7676

7777
## Example
7878
See the [angular-seed](https://github.com/angular/angular-seed) project for more examples, or look
79-
at the embedded examples in the Angular documentation (For example, [$http](http://docs.angularjs.org/api/ng/service/$http)
80-
has an end to end test in the example under the `protractor.js` tag).
79+
at the embedded examples in the Angular documentation (For example, {@link $http $http}
80+
has an end-to-end test in the example under the `protractor.js` tag).
8181

8282
## Caveats
8383

0 commit comments

Comments
 (0)