Skip to content

Commit cdf0419

Browse files
committed
Merge pull request #3383 from ReactiveX/stevegury/fix-comment-typo
Fix typo in a comment inside Observable.subscribe
2 parents 9cfe051 + e163007 commit cdf0419

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)