From f2f4b905e5cae32a121b63ae1bd4269919df2964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=A1ko=20Hevery?= Date: Wed, 12 Aug 2015 11:59:21 -0700 Subject: [PATCH] fix(docs): ng-non-bindable Closes #3607 --- modules/angular2/src/directives/ng_non_bindable.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/directives/ng_non_bindable.ts b/modules/angular2/src/directives/ng_non_bindable.ts index e388100c49..2829fad541 100644 --- a/modules/angular2/src/directives/ng_non_bindable.ts +++ b/modules/angular2/src/directives/ng_non_bindable.ts @@ -10,7 +10,7 @@ import {Directive} from 'angular2/annotations'; * * ``` *
Normal: {{1 + 2}}
// output "Normal: 3" - *
Ignored: {{1 + 2}}
// output "Ignored: {{1 + 2}}" + *
Ignored: {{1 + 2}}
// output "Ignored: {{1 + 2}}" * ``` */ @Directive({selector: '[ng-non-bindable]', compileChildren: false})