X Tutup
Skip to content

Commit f2f4b90

Browse files
committed
fix(docs): ng-non-bindable
Closes #3607
1 parent 08dbe87 commit f2f4b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/angular2/src/directives/ng_non_bindable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {Directive} from 'angular2/annotations';
1010
*
1111
* ```
1212
* <div>Normal: {{1 + 2}}</div> // output "Normal: 3"
13-
* <div non-bindable>Ignored: {{1 + 2}}</div> // output "Ignored: {{1 + 2}}"
13+
* <div ng-non-bindable>Ignored: {{1 + 2}}</div> // output "Ignored: {{1 + 2}}"
1414
* ```
1515
*/
1616
@Directive({selector: '[ng-non-bindable]', compileChildren: false})

0 commit comments

Comments
 (0)
X Tutup