From 00d890c07abe538fb414b7eba496f924c3526fe0 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Mon, 24 Jun 2013 15:34:54 -0300 Subject: docs(guide/expression): remove reference to `NullPointerException` --- docs/content/guide/expression.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/guide/expression.ngdoc b/docs/content/guide/expression.ngdoc index 62b5f8d8..eae41fcf 100644 --- a/docs/content/guide/expression.ngdoc +++ b/docs/content/guide/expression.ngdoc @@ -23,8 +23,8 @@ You can think of Angular expressions as JavaScript expressions with following di evaluation, unlike in JavaScript where the expressions are evaluated against the global `window`. - * **Forgiving:** expression evaluation is forgiving to undefined and null, unlike in JavaScript, - where such evaluations generate `NullPointerExceptions`. + * **Forgiving:** expression evaluation is forgiving to `undefined` and `null`, unlike in JavaScript, + where trying to evaluate undefined properties can generate `ReferenceError` or `TypeError`. * **No Control Flow Statements:** you cannot do any of the following in angular expression: conditionals, loops, or throw. -- cgit v1.2.3