From 7f6e1326f3a7a6a2ba2dbd48dd6571ebe929a7c1 Mon Sep 17 00:00:00 2001 From: brettcannon Date: Wed, 18 Jul 2012 17:30:36 -0300 Subject: [PATCH] fix(docs): Grammatical fix --- docs/content/tutorial/step_05.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/tutorial/step_05.ngdoc b/docs/content/tutorial/step_05.ngdoc index e518bf430d62..805200782c00 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.