aboutsummaryrefslogtreecommitdiffstats
path: root/src/Angular.js
diff options
context:
space:
mode:
authorMarc Tamlyn2013-10-08 10:42:51 +0100
committerPete Bacon Darwin2013-10-08 12:32:20 +0100
commitbed08c9c6661d6da5ed6337f194402ea02a8d14c (patch)
treea9d8daab4e01e9c3fc14efadeb4b62bb066381d4 /src/Angular.js
parentb56b21a898b3c77589a48a290271f9dc181dafe8 (diff)
downloadangular.js-bed08c9c6661d6da5ed6337f194402ea02a8d14c.tar.bz2
docs(angular.equals): fix simple typo
- JavasScript -> Javascript Closes #4323
Diffstat (limited to 'src/Angular.js')
-rw-r--r--src/Angular.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Angular.js b/src/Angular.js
index 879efb35..305f1321 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -705,7 +705,7 @@ function shallowCopy(src, dst) {
*
* * Both objects or values pass `===` comparison.
* * Both objects or values are of the same type and all of their properties pass `===` comparison.
- * * Both values are NaN. (In JavasScript, NaN == NaN => false. But we consider two NaN as equal)
+ * * Both values are NaN. (In JavaScript, NaN == NaN => false. But we consider two NaN as equal)
* * Both values represent the same regular expression (In JavasScript,
* /abc/ == /abc/ => false. But we consider two regular expressions as equal when their textual
* representation matches).