From ea88e3ac523828abd87e237766a4844bb7306d65 Mon Sep 17 00:00:00 2001 From: laranhee Date: Thu, 20 Oct 2016 11:37:04 +0900 Subject: [PATCH] docs($rootScope.Scope): add missing round bracket --- src/ng/rootScope.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index 618c7b93872c..cd53ab4dc552 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -285,7 +285,7 @@ function $RootScopeProvider() { * $digest()} and should return the value that will be watched. (`watchExpression` should not change * its value when executed multiple times with the same input because it may be executed multiple * times by {@link ng.$rootScope.Scope#$digest $digest()}. That is, `watchExpression` should be - * [idempotent](http://en.wikipedia.org/wiki/Idempotence). + * [idempotent](http://en.wikipedia.org/wiki/Idempotence).) * - The `listener` is called only when the value from the current `watchExpression` and the * previous call to `watchExpression` are not equal (with the exception of the initial run, * see below). Inequality is determined according to reference inequality,