style($interval): remove ws and replace comma with semicolon

This commit is contained in:
Igor Minar 2014-01-22 11:13:36 -08:00
parent 82213efff2
commit 7f444a205e

View file

@ -24,7 +24,7 @@ function $IntervalProvider() {
* In tests you can use {@link ngMock.$interval#methods_flush `$interval.flush(millis)`} to
* move forward by `millis` milliseconds and trigger any functions scheduled to run in that
* time.
*
*
* <div class="alert alert-warning">
* **Note**: Intervals created by this service must be explicitly destroyed when you are finished
* with them. In particular they are not automatically destroyed when a controller's scope or a
@ -137,8 +137,8 @@ function $IntervalProvider() {
promise = deferred.promise,
iteration = 0,
skipApply = (isDefined(invokeApply) && !invokeApply);
count = isDefined(count) ? count : 0,
count = isDefined(count) ? count : 0;
promise.then(null, null, fn);