aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorIgor Minar2011-12-06 12:20:35 -0800
committerIgor Minar2011-12-07 13:07:19 -0800
commitc28662d28dec613876bebacb2df994722c09f3fb (patch)
treec8b75bac0926f83579f27a0a0a9ecf771f9305dd /docs/content
parentb97c6e5f7431e5aaf3a37fb70c6fb984166ff276 (diff)
downloadangular.js-c28662d28dec613876bebacb2df994722c09f3fb.tar.bz2
fix(filter): remove the $ prefix from filter service ids
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/guide/dev_guide.forms.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/dev_guide.forms.ngdoc b/docs/content/guide/dev_guide.forms.ngdoc
index d2b81dcc..db2f88cd 100644
--- a/docs/content/guide/dev_guide.forms.ngdoc
+++ b/docs/content/guide/dev_guide.forms.ngdoc
@@ -286,7 +286,7 @@ This example shows how to implement a custom HTML editor widget in Angular.
this.htmlContent = '<b>Hello</b> <i>World</i>!';
}
- HTMLEditorWidget.$inject = ['$element', 'html$Filter'];
+ HTMLEditorWidget.$inject = ['$element', 'htmlFilter'];
function HTMLEditorWidget(element, htmlFilter) {
var self = this;