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 271d2bed3a
commit b32adb7dea

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