Skip to content

Commit e163007

Browse files
committed
Fix typo in a comment inside Observable.subscribe
sigificent -> significant alreay -> already
1 parent 9cfe051 commit e163007

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/rx/Observable.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7821,7 +7821,8 @@ private static <T> Subscription subscribe(Subscriber<? super T> subscriber, Obse
78217821
subscriber = new SafeSubscriber<T>(subscriber);
78227822
}
78237823

7824-
// The code below is exactly the same an unsafeSubscribe but not used because it would add a sigificent depth to alreay huge call stacks.
7824+
// The code below is exactly the same an unsafeSubscribe but not used because it would
7825+
// add a significant depth to already huge call stacks.
78257826
try {
78267827
// allow the hook to intercept and/or decorate
78277828
hook.onSubscribeStart(observable, observable.onSubscribe).call(subscriber);

0 commit comments

Comments
 (0)