Skip to content

Commit

Permalink
fix(docs): ng-non-bindable
Browse files Browse the repository at this point in the history
Closes #3607
  • Loading branch information
mhevery committed Aug 12, 2015
1 parent 08dbe87 commit f2f4b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/angular2/src/directives/ng_non_bindable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {Directive} from 'angular2/annotations';
*
* ```
* <div>Normal: {{1 + 2}}</div> // output "Normal: 3"
* <div non-bindable>Ignored: {{1 + 2}}</div> // output "Ignored: {{1 + 2}}"
* <div ng-non-bindable>Ignored: {{1 + 2}}</div> // output "Ignored: {{1 + 2}}"
* ```
*/
@Directive({selector: '[ng-non-bindable]', compileChildren: false})
Expand Down

0 comments on commit f2f4b90

Please sign in to comment.