Skip to content

Commit 7f444a2

Browse files
committed
style($interval): remove ws and replace comma with semicolon
1 parent 82213ef commit 7f444a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ng/interval.js

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

143143
promise.then(null, null, fn);
144144

0 commit comments

Comments
 (0)