@@ -1227,8 +1227,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1227
1227
* Creates a new backend definition.
1228
1228
*
1229
1229
* @param {string } method HTTP method.
1230
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1231
- * and returns true if the url match the current definition.
1230
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1231
+ * and returns true if the url matches the current definition.
1232
1232
* @param {(string|RegExp|function(string))= } data HTTP request body or function that receives
1233
1233
* data string and returns true if the data is as expected.
1234
1234
* @param {(Object|function(Object))= } headers HTTP headers or function that receives http header
@@ -1273,8 +1273,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1273
1273
* @description
1274
1274
* Creates a new backend definition for GET requests. For more info see `when()`.
1275
1275
*
1276
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1277
- * and returns true if the url match the current definition.
1276
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1277
+ * and returns true if the url matches the current definition.
1278
1278
* @param {(Object|function(Object))= } headers HTTP headers.
1279
1279
* @returns {requestHandler } Returns an object with `respond` method that controls how a matched
1280
1280
* request is handled. You can save this object for later use and invoke `respond` again in
@@ -1287,8 +1287,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1287
1287
* @description
1288
1288
* Creates a new backend definition for HEAD requests. For more info see `when()`.
1289
1289
*
1290
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1291
- * and returns true if the url match the current definition.
1290
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1291
+ * and returns true if the url matches the current definition.
1292
1292
* @param {(Object|function(Object))= } headers HTTP headers.
1293
1293
* @returns {requestHandler } Returns an object with `respond` method that controls how a matched
1294
1294
* request is handled. You can save this object for later use and invoke `respond` again in
@@ -1301,8 +1301,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1301
1301
* @description
1302
1302
* Creates a new backend definition for DELETE requests. For more info see `when()`.
1303
1303
*
1304
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1305
- * and returns true if the url match the current definition.
1304
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1305
+ * and returns true if the url matches the current definition.
1306
1306
* @param {(Object|function(Object))= } headers HTTP headers.
1307
1307
* @returns {requestHandler } Returns an object with `respond` method that controls how a matched
1308
1308
* request is handled. You can save this object for later use and invoke `respond` again in
@@ -1315,8 +1315,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1315
1315
* @description
1316
1316
* Creates a new backend definition for POST requests. For more info see `when()`.
1317
1317
*
1318
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1319
- * and returns true if the url match the current definition.
1318
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1319
+ * and returns true if the url matches the current definition.
1320
1320
* @param {(string|RegExp|function(string))= } data HTTP request body or function that receives
1321
1321
* data string and returns true if the data is as expected.
1322
1322
* @param {(Object|function(Object))= } headers HTTP headers.
@@ -1331,8 +1331,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1331
1331
* @description
1332
1332
* Creates a new backend definition for PUT requests. For more info see `when()`.
1333
1333
*
1334
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1335
- * and returns true if the url match the current definition.
1334
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1335
+ * and returns true if the url matches the current definition.
1336
1336
* @param {(string|RegExp|function(string))= } data HTTP request body or function that receives
1337
1337
* data string and returns true if the data is as expected.
1338
1338
* @param {(Object|function(Object))= } headers HTTP headers.
@@ -1347,8 +1347,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1347
1347
* @description
1348
1348
* Creates a new backend definition for JSONP requests. For more info see `when()`.
1349
1349
*
1350
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1351
- * and returns true if the url match the current definition.
1350
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1351
+ * and returns true if the url matches the current definition.
1352
1352
* @returns {requestHandler } Returns an object with `respond` method that controls how a matched
1353
1353
* request is handled. You can save this object for later use and invoke `respond` again in
1354
1354
* order to change how a matched request is handled.
@@ -1363,8 +1363,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1363
1363
* Creates a new request expectation.
1364
1364
*
1365
1365
* @param {string } method HTTP method.
1366
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1367
- * and returns true if the url match the current definition.
1366
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1367
+ * and returns true if the url matches the current definition.
1368
1368
* @param {(string|RegExp|function(string)|Object)= } data HTTP request body or function that
1369
1369
* receives data string and returns true if the data is as expected, or Object if request body
1370
1370
* is in JSON format.
@@ -1402,8 +1402,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1402
1402
* @description
1403
1403
* Creates a new request expectation for GET requests. For more info see `expect()`.
1404
1404
*
1405
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1406
- * and returns true if the url match the current definition.
1405
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1406
+ * and returns true if the url matches the current definition.
1407
1407
* @param {Object= } headers HTTP headers.
1408
1408
* @returns {requestHandler } Returns an object with `respond` method that controls how a matched
1409
1409
* request is handled. You can save this object for later use and invoke `respond` again in
@@ -1416,8 +1416,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1416
1416
* @description
1417
1417
* Creates a new request expectation for HEAD requests. For more info see `expect()`.
1418
1418
*
1419
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1420
- * and returns true if the url match the current definition.
1419
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1420
+ * and returns true if the url matches the current definition.
1421
1421
* @param {Object= } headers HTTP headers.
1422
1422
* @returns {requestHandler } Returns an object with `respond` method that controls how a matched
1423
1423
* request is handled. You can save this object for later use and invoke `respond` again in
@@ -1430,8 +1430,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1430
1430
* @description
1431
1431
* Creates a new request expectation for DELETE requests. For more info see `expect()`.
1432
1432
*
1433
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1434
- * and returns true if the url match the current definition.
1433
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1434
+ * and returns true if the url matches the current definition.
1435
1435
* @param {Object= } headers HTTP headers.
1436
1436
* @returns {requestHandler } Returns an object with `respond` method that controls how a matched
1437
1437
* request is handled. You can save this object for later use and invoke `respond` again in
@@ -1444,8 +1444,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1444
1444
* @description
1445
1445
* Creates a new request expectation for POST requests. For more info see `expect()`.
1446
1446
*
1447
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1448
- * and returns true if the url match the current definition.
1447
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1448
+ * and returns true if the url matches the current definition.
1449
1449
* @param {(string|RegExp|function(string)|Object)= } data HTTP request body or function that
1450
1450
* receives data string and returns true if the data is as expected, or Object if request body
1451
1451
* is in JSON format.
@@ -1461,8 +1461,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1461
1461
* @description
1462
1462
* Creates a new request expectation for PUT requests. For more info see `expect()`.
1463
1463
*
1464
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1465
- * and returns true if the url match the current definition.
1464
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1465
+ * and returns true if the url matches the current definition.
1466
1466
* @param {(string|RegExp|function(string)|Object)= } data HTTP request body or function that
1467
1467
* receives data string and returns true if the data is as expected, or Object if request body
1468
1468
* is in JSON format.
@@ -1478,8 +1478,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1478
1478
* @description
1479
1479
* Creates a new request expectation for PATCH requests. For more info see `expect()`.
1480
1480
*
1481
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1482
- * and returns true if the url match the current definition.
1481
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1482
+ * and returns true if the url matches the current definition.
1483
1483
* @param {(string|RegExp|function(string)|Object)= } data HTTP request body or function that
1484
1484
* receives data string and returns true if the data is as expected, or Object if request body
1485
1485
* is in JSON format.
@@ -1495,8 +1495,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) {
1495
1495
* @description
1496
1496
* Creates a new request expectation for JSONP requests. For more info see `expect()`.
1497
1497
*
1498
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1499
- * and returns true if the url match the current definition.
1498
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives an url
1499
+ * and returns true if the url matches the current definition.
1500
1500
* @returns {requestHandler } Returns an object with `respond` method that controls how a matched
1501
1501
* request is handled. You can save this object for later use and invoke `respond` again in
1502
1502
* order to change how a matched request is handled.
@@ -1906,8 +1906,8 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1906
1906
* Creates a new backend definition.
1907
1907
*
1908
1908
* @param {string } method HTTP method.
1909
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1910
- * and returns true if the url match the current definition.
1909
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1910
+ * and returns true if the url matches the current definition.
1911
1911
* @param {(string|RegExp)= } data HTTP request body.
1912
1912
* @param {(Object|function(Object))= } headers HTTP headers or function that receives http header
1913
1913
* object and returns true if the headers match the current definition.
@@ -1934,8 +1934,8 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1934
1934
* @description
1935
1935
* Creates a new backend definition for GET requests. For more info see `when()`.
1936
1936
*
1937
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1938
- * and returns true if the url match the current definition.
1937
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1938
+ * and returns true if the url matches the current definition.
1939
1939
* @param {(Object|function(Object))= } headers HTTP headers.
1940
1940
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
1941
1941
* control how a matched request is handled. You can save this object for later use and invoke
@@ -1949,8 +1949,8 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1949
1949
* @description
1950
1950
* Creates a new backend definition for HEAD requests. For more info see `when()`.
1951
1951
*
1952
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1953
- * and returns true if the url match the current definition.
1952
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1953
+ * and returns true if the url matches the current definition.
1954
1954
* @param {(Object|function(Object))= } headers HTTP headers.
1955
1955
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
1956
1956
* control how a matched request is handled. You can save this object for later use and invoke
@@ -1964,8 +1964,8 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1964
1964
* @description
1965
1965
* Creates a new backend definition for DELETE requests. For more info see `when()`.
1966
1966
*
1967
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1968
- * and returns true if the url match the current definition.
1967
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1968
+ * and returns true if the url matches the current definition.
1969
1969
* @param {(Object|function(Object))= } headers HTTP headers.
1970
1970
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
1971
1971
* control how a matched request is handled. You can save this object for later use and invoke
@@ -1979,8 +1979,8 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1979
1979
* @description
1980
1980
* Creates a new backend definition for POST requests. For more info see `when()`.
1981
1981
*
1982
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1983
- * and returns true if the url match the current definition.
1982
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1983
+ * and returns true if the url matches the current definition.
1984
1984
* @param {(string|RegExp)= } data HTTP request body.
1985
1985
* @param {(Object|function(Object))= } headers HTTP headers.
1986
1986
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
@@ -1995,8 +1995,8 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
1995
1995
* @description
1996
1996
* Creates a new backend definition for PUT requests. For more info see `when()`.
1997
1997
*
1998
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
1999
- * and returns true if the url match the current definition.
1998
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
1999
+ * and returns true if the url matches the current definition.
2000
2000
* @param {(string|RegExp)= } data HTTP request body.
2001
2001
* @param {(Object|function(Object))= } headers HTTP headers.
2002
2002
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
@@ -2011,8 +2011,8 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
2011
2011
* @description
2012
2012
* Creates a new backend definition for PATCH requests. For more info see `when()`.
2013
2013
*
2014
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
2015
- * and returns true if the url match the current definition.
2014
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
2015
+ * and returns true if the url matches the current definition.
2016
2016
* @param {(string|RegExp)= } data HTTP request body.
2017
2017
* @param {(Object|function(Object))= } headers HTTP headers.
2018
2018
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
@@ -2027,8 +2027,8 @@ angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
2027
2027
* @description
2028
2028
* Creates a new backend definition for JSONP requests. For more info see `when()`.
2029
2029
*
2030
- * @param {string|RegExp|function(string) } url HTTP url or function that receives the url
2031
- * and returns true if the url match the current definition.
2030
+ * @param {string|RegExp|function(string) } url HTTP url or function that receives a url
2031
+ * and returns true if the url matches the current definition.
2032
2032
* @returns {requestHandler } Returns an object with `respond` and `passThrough` methods that
2033
2033
* control how a matched request is handled. You can save this object for later use and invoke
2034
2034
* `respond` or `passThrough` again in order to change how a matched request is handled.
0 commit comments