diff options
| author | theotheo | 2013-02-06 06:14:12 +0400 |
|---|---|---|
| committer | Pawel Kozlowski | 2013-02-06 20:40:06 +0100 |
| commit | a83eced974b0ea1bedc12d02d684cf95b3c08b1c (patch) | |
| tree | 4a65f709b121188beee461cb85adaaea698d0d01 /docs | |
| parent | 7cc4063303e9fd4fe7b026990d444b5e5abc1f42 (diff) | |
| download | angular.js-a83eced974b0ea1bedc12d02d684cf95b3c08b1c.tar.bz2 | |
docs(module): fix code example
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/content/guide/module.ngdoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/guide/module.ngdoc b/docs/content/guide/module.ngdoc index 4465c30e..a157daf8 100644 --- a/docs/content/guide/module.ngdoc +++ b/docs/content/guide/module.ngdoc @@ -158,9 +158,9 @@ angular.module('myModule', []). angular.module('myModule', []). config(function($provide, $compileProvider, $filterProvider) { - $provide.value('a', 123) - $provide.factory('a', function() { return 123; }) - $compileProvider.directive('directiveName', ...). + $provide.value('a', 123); + $provide.factory('a', function() { return 123; }); + $compileProvider.directive('directiveName', ...); $filterProvider.register('filterName', ...); }); </pre> |
