Skip to content

Commit 0f2cd15

Browse files
Fix typo
as per #1266
1 parent 73b7518 commit 0f2cd15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rxjava-core/src/main/java/rx/plugins/RxJavaObservableExecutionHook.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public <T> OnSubscribe<T> onCreate(OnSubscribe<T> f) {
6666
* @return {@link OnSubscribe}<{@code T}> function that can be modified, decorated, replaced or just
6767
* returned as a pass-thru
6868
*/
69-
public <T> OnSubscribe<T> onSubscribeStart(Observable<? extends T> observableInsance, final OnSubscribe<T> onSubscribe) {
69+
public <T> OnSubscribe<T> onSubscribeStart(Observable<? extends T> observableInstance, final OnSubscribe<T> onSubscribe) {
7070
// pass-thru by default
7171
return onSubscribe;
7272
}

0 commit comments

Comments
 (0)