From 3b714740fdc2b97c2375324ee46b222c23c06bf5 Mon Sep 17 00:00:00 2001 From: Anthony Trimble Date: Tue, 10 May 2016 03:15:35 -0700 Subject: [PATCH] docs($httpBackend): fix a typo Fix comment typo (#14576) --- 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 8302afa89..8bf4bcc7d 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 * //... * }); * ```