aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/module.ngdoc
diff options
context:
space:
mode:
authorJay Zeng2012-09-03 22:57:41 -0700
committerMisko Hevery2012-09-06 16:06:22 -0700
commit7079ff5eb6c22e8755c11385979d9feaad8c7b9d (patch)
tree1f5ffa115676267cfb941a8ed0ec4dc94b0f095f /docs/content/guide/module.ngdoc
parent10e1c759f4602d993a76b0eacf6a2d04c8880017 (diff)
downloadangular.js-7079ff5eb6c22e8755c11385979d9feaad8c7b9d.tar.bz2
docs(module): myAppModule -> simpleAppModule
Diffstat (limited to 'docs/content/guide/module.ngdoc')
-rw-r--r--docs/content/guide/module.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/module.ngdoc b/docs/content/guide/module.ngdoc
index 42c9f3aa..bc55fea9 100644
--- a/docs/content/guide/module.ngdoc
+++ b/docs/content/guide/module.ngdoc
@@ -35,7 +35,7 @@ Important things to notice:
// configure the module.
// in this example we will create a greeting filter
- myAppModule.filter('greet', function() {
+ simpleAppModule.filter('greet', function() {
return function(name) {
return 'Hello, ' + name + '!';
};