From 0aea88ea917923e142e3ef2dec007001e81c2104 Mon Sep 17 00:00:00 2001 From: shoja Date: Thu, 14 May 2015 14:55:13 -0400 Subject: [PATCH] docs($httpBackend): correct typo docs($httpBackend): correct typo Correct "send" to "sent". --- 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 dd11e45701ab..090cac87f433 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -1083,7 +1083,7 @@ angular.mock.dump = function(object) { $httpBackend.flush(); $httpBackend.expectPOST('/add-msg.py', undefined, function(headers) { - // check if the header was send, if it wasn't the expectation won't + // check if the header was sent, if it wasn't the expectation won't // match the request and the test will fail return headers['Authorization'] == 'xxx'; }).respond(201, '');