aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrettcannon2012-07-18 17:23:20 -0300
committerBrian Ford2012-07-18 15:15:09 -0700
commit01e726b2fa3fb0d2584c9bb8df116ff3a9f05879 (patch)
tree27ee5b6171c595bc13dd8e6a5a9bf5f8498b6802
parent161362164532af3578c9e3e8b52cd80b15345add (diff)
downloadangular.js-01e726b2fa3fb0d2584c9bb8df116ff3a9f05879.tar.bz2
fix(docs): Don't want the present participle of "is"
-rw-r--r--docs/content/tutorial/step_05.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_05.ngdoc b/docs/content/tutorial/step_05.ngdoc
index ef8c28ba..40205e46 100644
--- a/docs/content/tutorial/step_05.ngdoc
+++ b/docs/content/tutorial/step_05.ngdoc
@@ -104,7 +104,7 @@ to avoid any possible naming collisions.
Since angular infers the controller's dependencies from the names of arguments to the controller's
constructor function, if you were to {@link http://en.wikipedia.org/wiki/Minification_(programming)
minify} the JavaScript code for `PhoneListCtrl` controller, all of its function arguments would be
-minified as well, and the dependency injector would not being able to identify services correctly.
+minified as well, and the dependency injector would be able to identify services correctly.
To overcome issues caused by minification, just assign an array with service identifier strings
into the `$inject` property of the controller function, just like the last line in the snippet