From 92f6b45e02c4919461179e556f629c869b9ff919 Mon Sep 17 00:00:00 2001 From: Chris Wheatley Date: Fri, 11 Apr 2014 08:16:54 +0100 Subject: [PATCH] docs(ngMock): grammar fix Small grammar fix for mock $httpBackend documentation. --- src/ngMock/angular-mocks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index b5eb6bcc0..cbfabd3da 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -893,7 +893,7 @@ angular.mock.dump = function(object) { * When an Angular application needs some data from a server, it calls the $http service, which * sends the request to a real server using $httpBackend service. With dependency injection, it is * easy to inject $httpBackend mock (which has the same API as $httpBackend) and use it to verify - * the requests and respond with some testing data without sending a request to real server. + * the requests and respond with some testing data without sending a request to a real server. * * There are two ways to specify what test data should be returned as http responses by the mock * backend when the code under test makes http requests: