docs(module): fix typo in example

fixed example app, `simpleAppModule` should have been `myAppModule`.
This commit is contained in:
Tim Macfarlane 2012-10-31 20:48:53 +00:00 committed by Igor Minar
parent 54bcb9ae25
commit fa12564607

View file

@ -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 + '!';
};