Skip to content

Commit 3664000

Browse files
committed
More moviePrepService typo fixes
Renamed moviePrepService lines to moviesPrepService to match the rest of the code
1 parent 49146cf commit 3664000

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1585,13 +1585,13 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
15851585
controller: 'AvengersController',
15861586
controllerAs: 'vm',
15871587
resolve: {
1588-
moviesPrepService: moviePrepService
1588+
moviesPrepService: moviesPrepService
15891589
}
15901590
});
15911591
}
15921592

1593-
moviePrepService.$inject = ['movieService'];
1594-
function moviePrepService(movieService) {
1593+
moviesPrepService.$inject = ['movieService'];
1594+
function moviesPrepService(movieService) {
15951595
return movieService.getMovies();
15961596
}
15971597
```

0 commit comments

Comments
 (0)