From cf3f70988928ef3bcb33fcd463fe9db532d32844 Mon Sep 17 00:00:00 2001 From: Kristof Mattei Date: Wed, 14 May 2014 10:00:47 +0200 Subject: [PATCH] docs(shallowCopy): fixed typo Closes #7456 --- src/Angular.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index 5d5cc2fe..c104a961 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -832,7 +832,7 @@ function shallowCopy(src, dst) { * * Both objects or values are of the same type and all of their properties are equal by * comparing them with `angular.equals`. * * 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, + * * Both values represent the same regular expression (In JavaScript, * /abc/ == /abc/ => false. But we consider two regular expressions as equal when their textual * representation matches). *