aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/module.ngdoc
diff options
context:
space:
mode:
authorSahat Yalkabov2012-08-01 16:43:11 -0400
committerMisko Hevery2012-08-30 16:10:39 -0700
commit62cfedbe0cae33d3d52830df2aa56958e0486b8b (patch)
tree1c6e49d795f932752d393cdd455a7e03c69285cb /docs/content/guide/module.ngdoc
parent5cb7297a08649107d5155a22477c8c3511372034 (diff)
downloadangular.js-62cfedbe0cae33d3d52830df2aa56958e0486b8b.tar.bz2
doc(module) changed simpleApp to myApp in the Module page guide for consistency
Diffstat (limited to 'docs/content/guide/module.ngdoc')
-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 d3c0b8ee..42c9f3aa 100644
--- a/docs/content/guide/module.ngdoc
+++ b/docs/content/guide/module.ngdoc
@@ -27,15 +27,15 @@ Important things to notice:
* Notice the reference to the `myApp` module in the `<html ng-app="myApp">`, it is what
bootstraps the app using your module.
-<doc:example module='simpleApp'>
+<doc:example module='myApp'>
<doc:source>
<script>
// declare a module
- var simpleAppModule = angular.module('simpleApp', []);
+ var simpleAppModule = angular.module('myApp', []);
// configure the module.
// in this example we will create a greeting filter
- simpleAppModule.filter('greet', function() {
+ myAppModule.filter('greet', function() {
return function(name) {
return 'Hello, ' + name + '!';
};