File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -674,7 +674,7 @@ function sliceArgs(args, startIndex) {
674
674
*
675
675
* @description
676
676
* Returns a function which calls function `fn` bound to `self` (`self` becomes the `this` for
677
- * `fn`). You can supply optional `args` that are are prebound to the function. This feature is also
677
+ * `fn`). You can supply optional `args` that are prebound to the function. This feature is also
678
678
* known as [function currying](http://en.wikipedia.org/wiki/Currying).
679
679
*
680
680
* @param {Object } self Context which `fn` should be evaluated in.
@@ -1006,7 +1006,7 @@ function bindJQuery() {
1006
1006
}
1007
1007
1008
1008
/**
1009
- * throw error of the argument is falsy.
1009
+ * throw error if the argument is falsy.
1010
1010
*/
1011
1011
function assertArg ( arg , name , reason ) {
1012
1012
if ( ! arg ) {
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ angular.mock.$ExceptionHandlerProvider = function() {
241
241
*
242
242
* @param {string } mode Mode of operation, defaults to `rethrow`.
243
243
*
244
- * - `rethrow`: If any errors are are passed into the handler in tests, it typically
244
+ * - `rethrow`: If any errors are passed into the handler in tests, it typically
245
245
* means that there is a bug in the application or test, so this mock will
246
246
* make these tests fail.
247
247
* - `log`: Sometimes it is desirable to test that an error is thrown, for this case the `log` mode stores an
You can’t perform that action at this time.
0 commit comments