docs(tutorial): fix typos in examples

The phonecatApp and phonecatAnimations modules have a dot where a semicolon should be at the end of the sentence

Closes #7167
This commit is contained in:
Amin Ogarrio
2014-04-20 05:11:22 -07:00
committed by Igor Minar
parent 2a778d0038
commit 76cb5ce7c5

View File

@@ -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',
]).
]);
// ...
```