From e0adbab47341b95da96f21a194255e6882081743 Mon Sep 17 00:00:00 2001 From: Marc Tamlyn Date: Tue, 8 Oct 2013 10:42:51 +0100 Subject: [PATCH] docs(angular.equals): Fix simple typo - JavasScript -> Javascript --- src/Angular.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index 879efb3560cc..305f132176e4 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).