aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortheotheo2013-02-06 06:14:12 +0400
committerPawel Kozlowski2013-02-06 21:36:21 +0100
commit32063278bd63cd3b8631dc850d0f27e63990f869 (patch)
treea77b8b5b138addff55654a0ff423c144a663f42d
parent92208d2f85fa5a9c2473db2d8349ae6e0dc189a6 (diff)
downloadangular.js-32063278bd63cd3b8631dc850d0f27e63990f869.tar.bz2
docs(module): fix code example
-rw-r--r--docs/content/guide/module.ngdoc6
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>