aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Zeng2012-09-03 22:57:41 -0700
committerMisko Hevery2012-09-06 15:49:49 -0700
commited5dfbcd66cd72372843cb4f6f5957a7a9e7da79 (patch)
tree35f0b73b358c75cedea1c294972f5b1c96dd24f2
parentd2e52b2376962cf9bd029f18039140c2284c77fc (diff)
downloadangular.js-ed5dfbcd66cd72372843cb4f6f5957a7a9e7da79.tar.bz2
docs(module): myAppModule -> simpleAppModule
-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 + '!';
};