docs(module): myAppModule -> simpleAppModule

This commit is contained in:
Jay Zeng 2012-09-03 22:57:41 -07:00 committed by Misko Hevery
parent d2e52b2376
commit ed5dfbcd66

View file

@ -35,7 +35,7 @@ Important things to notice:
// configure the module.
// in this example we will create a greeting filter
myAppModule.filter('greet', function() {
simpleAppModule.filter('greet', function() {
return function(name) {
return 'Hello, ' + name + '!';
};