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

Commit f34e341

Browse files
SirJackovichpetebacondarwin
authored andcommitted
docs(tutorial): fix typos
Closes #14662 Closes #14663 Closes #14664
1 parent 4d28598 commit f34e341

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/content/tutorial/step_03.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ HTML page into a dynamic view. This is a very common pattern in Single-Page Appl
1515
state, usually as a result of user interaction (we'll see an example shortly in
1616
{@link step_05 step 5}).
1717

18-
The **template** (the part of the view containing the bindings and presentation logic) acts as a
19-
a blueprint for how our data should be organized and presented to the user.
18+
The **template** (the part of the view containing the bindings and presentation logic) acts as a
19+
blueprint for how our data should be organized and presented to the user.
2020
The **controller** provides the context in which the bindings are evaluated and applies behavior
2121
and logic to our template.
2222

docs/content/tutorial/step_04.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ Similarly, the accompanying spec file loads the `phonecatApp` module before each
109109
that's where our component is registered). Now, imagine that we need a list of phones on another
110110
project that we are working on. Thanks to our modular architecture, we don't have to reinvent the
111111
wheel; we simply copy the `phone-list/` directory on our other project and add the necessary script
112-
tags in our `index.html` file and we are done, right ?
112+
tags in our `index.html` file and we are done, right?
113113

114114
Well, not so fast. The new project doesn't know anything about a `phonecatApp` module. So, we would
115115
have to replace all references to `phonecatApp` with the name of this project's main module. As you
116116
can imagine this is both laborious and error-prone.
117117

118-
Yeah, you guessed it: There is a better way !
118+
Yeah, you guessed it: There is a better way!
119119

120120
Each feature/section, will declare its own module and have all related entities registered there.
121121
The main module (`phonecatApp`) will declare a dependency on each feature/section module. Now,

0 commit comments

Comments
 (0)