Skip to content

Commit

Permalink
docs(module): fix typo in example
Browse files Browse the repository at this point in the history
fixed example app, `simpleAppModule` should have been `myAppModule`.
  • Loading branch information
refractalize authored and IgorMinar committed Oct 31, 2012
1 parent 271d2be commit b32adb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/guide/module.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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 + '!';
};
Expand Down

0 comments on commit b32adb7

Please sign in to comment.