From b48203f9f2d971008b1e6bd6c402a9ceca4979ed Mon Sep 17 00:00:00 2001 From: TLChan Date: Sun, 10 Aug 2014 03:16:00 -0700 Subject: [PATCH] docs(tutorial/step_05): improve formatting of code identifier Closes #8557 --- 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 3e2fe3cee..e34463e50 100644 --- a/docs/content/tutorial/step_05.ngdoc +++ b/docs/content/tutorial/step_05.ngdoc @@ -166,7 +166,7 @@ Because we started using dependency injection and our controller has dependencie controller in our tests is a bit more complicated. We could use the `new` operator and provide the constructor with some kind of fake `$http` implementation. However, Angular provides a mock `$http` service that we can use in unit tests. We configure "fake" responses to server requests by calling -methods on a service called $httpBackend: +methods on a service called `$httpBackend`: ```js describe('PhoneCat controllers', function() {