From 5828f4de798b91fa948bb52662c1884d70f42714 Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Thu, 5 Nov 2015 13:17:48 -0800 Subject: [PATCH] doc(template syntax): Short-circuiting is now supported see https://github.com/angular/angular/pull/5146 --- public/docs/ts/latest/guide/template-syntax.jade | 2 -- 1 file changed, 2 deletions(-) diff --git a/public/docs/ts/latest/guide/template-syntax.jade b/public/docs/ts/latest/guide/template-syntax.jade index a85f3bc74e..c70265cb43 100644 --- a/public/docs/ts/latest/guide/template-syntax.jade +++ b/public/docs/ts/latest/guide/template-syntax.jade @@ -99,8 +99,6 @@ code-example(format="" language="html" escape="html"). * Assignment is prohibited except in [Event Bindings](#event-binding). * The `new` operator is prohibited. * The bit-wise operators, `|` and `&`, are not supported. - * The logical operators, `||` and `&&`, and the ternary operator in `a?b:c` do not “short-circuit”. - Angular evaluates both sides of `a && a.foo` and reports an error if `a` is null. * Increment and decrement operators, `++` and `--`, aren’t supported. * [Template expression operators](#expression-operators), such as `|` and `?.`, add new meaning.