aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/rootScopeSpec.js
diff options
context:
space:
mode:
authorDaniel Luz2012-11-04 19:26:58 -0200
committerMisko Hevery2013-02-14 14:43:32 -0800
commitd7e9ae121531f8ad38efaa9c7a20f4b9d70ce15b (patch)
treed60ef292c16962645bfa3e26e85b098641bfc410 /test/ng/rootScopeSpec.js
parent6cf9ede88e7634ae141acc7a37cfbe9460d22e1d (diff)
downloadangular.js-d7e9ae121531f8ad38efaa9c7a20f4b9d70ce15b.tar.bz2
fix($rootScope): minor typo fixes
Diffstat (limited to 'test/ng/rootScopeSpec.js')
-rw-r--r--test/ng/rootScopeSpec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js
index 3f6f795a..8031968a 100644
--- a/test/ng/rootScopeSpec.js
+++ b/test/ng/rootScopeSpec.js
@@ -216,7 +216,7 @@ describe('Scope', function() {
});
- it('should prevent infinite recursion and print print watcher function name or body',
+ it('should prevent infinite recursion and print watcher function name or body',
inject(function($rootScope) {
$rootScope.$watch(function watcherA() {return $rootScope.a;}, function() {$rootScope.b++;});
$rootScope.$watch(function() {return $rootScope.b;}, function() {$rootScope.a++;});
@@ -328,7 +328,7 @@ describe('Scope', function() {
}));
- it('should always call the watchr with newVal and oldVal equal on the first run',
+ it('should always call the watcher with newVal and oldVal equal on the first run',
inject(function($rootScope) {
var log = [];
function logger(scope, newVal, oldVal) {