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.