From f907ea5a36d6b73722e4c59c7506f729b1518b07 Mon Sep 17 00:00:00 2001 From: Kin Date: Sun, 21 Feb 2016 12:09:33 -0800 Subject: [PATCH 1/2] fix typo --- src/Angular.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index d988145ea821..c3e326d756fe 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -216,7 +216,7 @@ function isArrayLike(obj) { * * Unlike ES262's * [Array.prototype.forEach](http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.18), - * Providing 'undefined' or 'null' values for `obj` will not throw a TypeError, but rather just + * providing 'undefined' or 'null' values for `obj` will not throw a TypeError, but rather just * return the value provided. * ```js From 0c8262d1ea3b8bec9d0fd58533b5906654858153 Mon Sep 17 00:00:00 2001 From: Kin Date: Sun, 21 Feb 2016 12:27:42 -0800 Subject: [PATCH 2/2] fix for output of -Infinity --- src/ng/filter/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index c94897455ada..cf2089e4dabf 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -85,7 +85,7 @@ function currencyFilter($locale) { * Formats a number as text. * * If the input is null or undefined, it will just be returned. - * If the input is infinite (Infinity/-Infinity) the Infinity symbol '∞' is returned. + * If the input is infinite (Infinity or -Infinity), the Infinity symbol '∞' or '-∞' is returned, respectively. * If the input is not a number an empty string is returned. * *