This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -810,7 +810,7 @@ function $RootScopeProvider(){
810
810
811
811
/**
812
812
* function used as an initial value for watchers.
813
- * because it's uniqueue we can easily tell it apart from other values
813
+ * because it's unique we can easily tell it apart from other values
814
814
*/
815
815
function initWatchVal ( ) { }
816
816
} ] ;
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ describe('Scope', function() {
216
216
} ) ;
217
217
218
218
219
- it ( 'should prevent infinite recursion and print print watcher function name or body' ,
219
+ it ( 'should prevent infinite recursion and print watcher function name or body' ,
220
220
inject ( function ( $rootScope ) {
221
221
$rootScope . $watch ( function watcherA ( ) { return $rootScope . a ; } , function ( ) { $rootScope . b ++ ; } ) ;
222
222
$rootScope . $watch ( function ( ) { return $rootScope . b ; } , function ( ) { $rootScope . a ++ ; } ) ;
@@ -328,7 +328,7 @@ describe('Scope', function() {
328
328
} ) ) ;
329
329
330
330
331
- it ( 'should always call the watchr with newVal and oldVal equal on the first run' ,
331
+ it ( 'should always call the watcher with newVal and oldVal equal on the first run' ,
332
332
inject ( function ( $rootScope ) {
333
333
var log = [ ] ;
334
334
function logger ( scope , newVal , oldVal ) {
You can’t perform that action at this time.
0 commit comments