From e953d3e8b64744dcdbc8c12042e584ae61d698fb Mon Sep 17 00:00:00 2001 From: Anthony Trimble Date: Mon, 9 May 2016 14:11:53 -0700 Subject: [PATCH] docs($httpBackend): Fix typo Fix comment typo --- 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 8302afa8947d..8bf4bcc7d7b9 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -2370,7 +2370,7 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) { * phones.push(phone); * return [200, phone, {}]; * }); - * $httpBackend.whenGET(/^\/templates\//).passThrough(); // Requests for templare are handled by the real server + * $httpBackend.whenGET(/^\/templates\//).passThrough(); // Requests for templates are handled by the real server * //... * }); * ```