diff --git a/src/ng/directive/ngNonBindable.js b/src/ng/directive/ngNonBindable.js index cab3db9bd648..fed7683af711 100644 --- a/src/ng/directive/ngNonBindable.js +++ b/src/ng/directive/ngNonBindable.js @@ -9,9 +9,10 @@ * * @description * The `ngNonBindable` directive tells AngularJS not to compile or bind the contents of the current - * DOM element. This is useful if the element contains what appears to be AngularJS directives and - * bindings but which should be ignored by AngularJS. This could be the case if you have a site that - * displays snippets of code, for instance. + * DOM element, including directives on the element itself that have a lower priority than + * `ngNonBindable`. This is useful if the element contains what appears to be AngularJS directives + * and bindings but which should be ignored by AngularJS. This could be the case if you have a site + * that displays snippets of code, for instance. * * @example * In this example there are two locations where a simple interpolation binding (`{{}}`) is present,