aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorbrettcannon2012-07-18 17:30:36 -0300
committerBrian Ford2012-07-18 15:48:08 -0700
commit7f6e1326f3a7a6a2ba2dbd48dd6571ebe929a7c1 (patch)
treee1af69f3bf33dc9a79db4591014b8b074ea72daf /docs
parent1fd2b3d402f36e395a1fe9ea7e3f91a1b2833426 (diff)
downloadangular.js-7f6e1326f3a7a6a2ba2dbd48dd6571ebe929a7c1.tar.bz2
fix(docs): Grammatical fix
Diffstat (limited to 'docs')
-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 e518bf43..80520078 100644
--- a/docs/content/tutorial/step_05.ngdoc
+++ b/docs/content/tutorial/step_05.ngdoc
@@ -172,7 +172,7 @@ we create the `PhoneListCtrl` child scope, we need to tell the testing harness t
incoming request from the controller. To do this we:
* Request `$httpBackend` service to be injected into our `beforeEach` function. This is a mock
-mock version of the service that in production environment facilitates all XHR and JSONP requests.
+version of the service that in a production environment facilitates all XHR and JSONP requests.
The mock version of this service allows you to write tests without having to deal with
native APIs and the global state associated with them — both of which make testing a nightmare.