From b32adb7deaaa31fae97afacbeec224fdd86616f6 Mon Sep 17 00:00:00 2001 From: Tim Macfarlane Date: Wed, 31 Oct 2012 20:48:53 +0000 Subject: [PATCH] docs(module): fix typo in example fixed example app, `simpleAppModule` should have been `myAppModule`. --- docs/content/guide/module.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/module.ngdoc b/docs/content/guide/module.ngdoc index 906f7a3faa53..741474c0922f 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 + '!'; };