docs(tutorial/step_05): improve formatting of code identifier

Closes #8557
This commit is contained in:
TLChan
2014-08-10 03:16:00 -07:00
committed by Caitlin Potter
parent e96be5bfb8
commit 9a09f1d96d

View File

@@ -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() {