aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorTim Macfarlane2012-10-31 20:48:53 +0000
committerIgor Minar2012-10-31 14:22:12 -0700
commitfa12564607c94eebd1c07a3447d19553b4ceec22 (patch)
tree67b656940c2ceb60c4a00e0f3ff810ce85062795 /docs/content
parent54bcb9ae25a99ada25e22d1209bc264a2dcd72a7 (diff)
downloadangular.js-fa12564607c94eebd1c07a3447d19553b4ceec22.tar.bz2
docs(module): fix typo in example
fixed example app, `simpleAppModule` should have been `myAppModule`.
Diffstat (limited to 'docs/content')
-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 + '!';
};