docs($rootScope): add missing round bracket

Closes #15299
This commit is contained in:
laranhee
2016-10-20 11:37:04 +09:00
committed by Georgios Kalpakas
parent 35482babd9
commit f5f802c6e6
+1 -1
View File
@@ -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,