From 2862883bd85965a789a5dd9c04a7fdcd3cfc7e65 Mon Sep 17 00:00:00 2001 From: Mitch Robb Date: Fri, 25 Jul 2014 11:53:15 -0700 Subject: [PATCH] docs(tutorial): update step7 ngdoc to fix grammar This line was missing an 'as' Previous: We also have to add the modules dependencies of our app. By listing these two modules as dependencies of `phonecatApp`, ... New: We also have to add the modules *as* dependencies of our app. Closes #8345 --- docs/content/tutorial/step_07.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc index 94a32ccea..69c0f1a9f 100644 --- a/docs/content/tutorial/step_07.ngdoc +++ b/docs/content/tutorial/step_07.ngdoc @@ -202,7 +202,7 @@ moved the controllers into their own module `phonecatControllers` (as shown belo We added `angular-route.js` to `index.html` and created a new `phonecatControllers` module in `controllers.js`. That's not all we need to do to be able to use their code, however. We also have -to add the modules dependencies of our app. By listing these two modules as dependencies of +to add the modules as dependencies of our app. By listing these two modules as dependencies of `phonecatApp`, we can use the directives and services they provide.