diff --git a/docs/content/tutorial/step_12.ngdoc b/docs/content/tutorial/step_12.ngdoc index 19a2390fabea..2f751e2566a0 100644 --- a/docs/content/tutorial/step_12.ngdoc +++ b/docs/content/tutorial/step_12.ngdoc @@ -113,7 +113,7 @@ with `ngResource`. __`app/js/animations.js`.__ ```js -angular.module('phonecatAnimations', ['ngAnimate']). +angular.module('phonecatAnimations', ['ngAnimate']); // ... // this module will later be used to define animations // ... @@ -132,7 +132,7 @@ angular.module('phonecatApp', [ 'phonecatControllers', 'phonecatFilters', 'phonecatServices', -]). +]); // ... ```