aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/ngNonBindable.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ng/directive/ngNonBindable.js')
-rw-r--r--src/ng/directive/ngNonBindable.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ng/directive/ngNonBindable.js b/src/ng/directive/ngNonBindable.js
index 2e9faa5a..6165c6f6 100644
--- a/src/ng/directive/ngNonBindable.js
+++ b/src/ng/directive/ngNonBindable.js
@@ -2,18 +2,18 @@
/**
* @ngdoc directive
- * @name angular.module.ng.$compileProvider.directive.ng-non-bindable
+ * @name angular.module.ng.$compileProvider.directive.ngNonBindable
* @priority 1000
*
* @description
* Sometimes it is necessary to write code which looks like bindings but which should be left alone
- * by angular. Use `ng-non-bindable` to make angular ignore a chunk of HTML.
+ * by angular. Use `ngNonBindable` to make angular ignore a chunk of HTML.
*
* @element ANY
*
* @example
* In this example there are two location where a simple binding (`{{}}`) is present, but the one
- * wrapped in `ng-non-bindable` is left alone.
+ * wrapped in `ngNonBindable` is left alone.
*
* @example
<doc:example>