diff options
| author | Tim Macfarlane | 2012-10-31 20:48:53 +0000 |
|---|---|---|
| committer | Igor Minar | 2012-10-31 14:22:12 -0700 |
| commit | fa12564607c94eebd1c07a3447d19553b4ceec22 (patch) | |
| tree | 67b656940c2ceb60c4a00e0f3ff810ce85062795 | |
| parent | 54bcb9ae25a99ada25e22d1209bc264a2dcd72a7 (diff) | |
| download | angular.js-fa12564607c94eebd1c07a3447d19553b4ceec22.tar.bz2 | |
docs(module): fix typo in example
fixed example app, `simpleAppModule` should have been `myAppModule`.
| -rw-r--r-- | docs/content/guide/module.ngdoc | 2 |
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 + '!'; }; |
