aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/module.ngdoc
diff options
context:
space:
mode:
authorTim Macfarlane2012-10-31 20:48:53 +0000
committerIgor Minar2012-10-31 14:21:28 -0700
commitb32adb7deaaa31fae97afacbeec224fdd86616f6 (patch)
tree6c990f1a7cdeb049cfab739c55902ff25e791404 /docs/content/guide/module.ngdoc
parent271d2bed3afacc780b40af8b692c40a031d79f9d (diff)
downloadangular.js-b32adb7deaaa31fae97afacbeec224fdd86616f6.tar.bz2
docs(module): fix typo in example
fixed example app, `simpleAppModule` should have been `myAppModule`.
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 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 + '!';
};