Skip to content

Commit 0f5259c

Browse files
committed
docs(introduction): rename
1 parent 321a4a6 commit 0f5259c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/content/guide/dev_guide.introduction.ngdoc renamed to docs/content/guide/introduction.ngdoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@
33
@description
44

55
Angular is pure client-side technology, written entirely in JavaScript. It works with the
6-
long-established technologies of the web (HTML, CSS, and JavaScript) to make the development of web
7-
apps easier and faster than ever before.
6+
long-established technologies of the web (HTML, CSS, and JavaScript) to make the development of
7+
web apps easier and faster than ever before.
88

99
One important way that angular simplifies web development is by increasing the level of abstraction
1010
between the developer and most low-level web app development tasks. Angular automatically takes
1111
care of many of these tasks, including:
1212

13-
* DOM Manipulation
14-
* Setting Up Listeners and Notifiers
15-
* Input Validation
13+
* DOM Manipulation
14+
* Setting Up Listeners and Notifiers
15+
* Input Validation
1616

1717
Because angular handles much of the work involved in these tasks, developers can concentrate more
1818
on application logic and less on repetitive, error-prone, lower-level coding.
1919

2020
At the same time that angular simplifies the development of web apps, it brings relatively
2121
sophisticated techniques to the client-side, including:
2222

23-
* Separation of data, application logic, and presentation components
24-
* Data Binding between data and presentation components
25-
* Services (common web app operations, implemented as substitutable objects)
26-
* Dependency Injection (used primarily for wiring together services)
27-
* An extensible HTML compiler (written entirely in JavaScript)
28-
* Ease of Testing
23+
* Separation of data, application logic, and presentation components
24+
* Data Binding between data and presentation components
25+
* Services (common web app operations, implemented as substitutable objects)
26+
* Dependency Injection (used primarily for wiring together services)
27+
* An extensible HTML compiler (written entirely in JavaScript)
28+
* Ease of Testing
2929

3030
These techniques have been for the most part absent from the client-side for far too long.
3131

0 commit comments

Comments
 (0)