@@ -213,7 +213,7 @@ include ../_util-fns
213213
214214 The `upgrade` module in Angular is a very useful tool for upgrading
215215 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
217217 seamlessly. That means we don't have to do the upgrade work all at once,
218218 since there's a natural coexistence between the two frameworks during the
219219 transition period.
@@ -1115,7 +1115,7 @@ code-example(format="").
11151115 that we want to load. Since we're bootstrapping the app through
11161116 an `UpgradeModule`, we're actually now running the app as a **hybrid app**.
11171117
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
11191119 exciting! We're not running any actual Angular components yet though,
11201120 so let's do that next.
11211121
@@ -1210,7 +1210,7 @@ code-example(format="").
12101210 Now that we are loading `phone.service.ts` through an import that is resolved
12111211 by SystemJS, we should **remove the <script> tag** for the service from `index.html`.
12121212 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.
12141214
12151215 At this point we can switch our two components to use the new service
12161216 instead of the old one. We `$inject` it as the downgraded `phone` factory,
0 commit comments