diff options
| author | Tim Macfarlane | 2012-10-31 20:48:53 +0000 | 
|---|---|---|
| committer | Igor Minar | 2012-10-31 14:21:28 -0700 | 
| commit | b32adb7deaaa31fae97afacbeec224fdd86616f6 (patch) | |
| tree | 6c990f1a7cdeb049cfab739c55902ff25e791404 | |
| parent | 271d2bed3afacc780b40af8b692c40a031d79f9d (diff) | |
| download | angular.js-b32adb7deaaa31fae97afacbeec224fdd86616f6.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 + '!';          }; | 
