@@ -213,7 +213,7 @@ include ../_util-fns
213
213
214
214
The `upgrade` module in Angular is a very useful tool for upgrading
215
215
anything but the smallest of applications. With it we can mix and match
216
- AngularJS and 2 components in the same application and have them interoperate
216
+ AngularJS and Angular components in the same application and have them interoperate
217
217
seamlessly. That means we don't have to do the upgrade work all at once,
218
218
since there's a natural coexistence between the two frameworks during the
219
219
transition period.
@@ -1115,7 +1115,7 @@ code-example(format="").
1115
1115
that we want to load. Since we're bootstrapping the app through
1116
1116
an `UpgradeModule`, we're actually now running the app as a **hybrid app**.
1117
1117
1118
- This means we are now running both AngularJS and 2 at the same time. That's pretty
1118
+ This means we are now running both AngularJS and Angular at the same time. That's pretty
1119
1119
exciting! We're not running any actual Angular components yet though,
1120
1120
so let's do that next.
1121
1121
@@ -1210,7 +1210,7 @@ code-example(format="").
1210
1210
Now that we are loading `phone.service.ts` through an import that is resolved
1211
1211
by SystemJS, we should **remove the <script> tag** for the service from `index.html`.
1212
1212
This is something we'll do to all our components as we upgrade them. Simultaneously
1213
- with the AngularJS to 2 upgrade we're also migrating our code from scripts to modules.
1213
+ with the AngularJS to Angular upgrade we're also migrating our code from scripts to modules.
1214
1214
1215
1215
At this point we can switch our two components to use the new service
1216
1216
instead of the old one. We `$inject` it as the downgraded `phone` factory,
0 commit comments