From 8b4eb49fe041c925772d4ee5c03b786482b6a526 Mon Sep 17 00:00:00 2001 From: Amin Ogarrio Date: Sun, 20 Apr 2014 05:11:22 -0700 Subject: [PATCH] I've found 2 mistakes in step 12 The phonecatApp and phonecatAnimations modules have a dot where a semicolon should be at the end of the sentence --- docs/content/tutorial/step_12.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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', -]). +]); // ... ```