aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 906f7a3f..741474c0 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
- simpleAppModule.filter('greet', function() {
+ myAppModule.filter('greet', function() {
return function(name) {
return 'Hello, ' + name + '!';
};