Skip to content

Commit bd0e5c7

Browse files
Cleanup Javadocs
1 parent d81f7f0 commit bd0e5c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public static interface OnSubscribeFunc<T> extends Function {
127127
/**
128128
* Observable with Function to execute when subscribed to.
129129
* <p>
130-
* NOTE: Use {@link #create(Func1)} to create an Observable instead of this method unless you
130+
* NOTE: Use {@link #create(OnSubscribeFunc)} to create an Observable instead of this constructor unless you
131131
* specifically have a need for inheritance.
132132
*
133133
* @param onSubscribe

rxjava-core/src/main/java/rx/observables/BlockingObservable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private Subscription protectivelyWrapAndSubscribe(Observer<? super T> observer)
109109
* <p>
110110
* NOTE: This will block even if the Observable is asynchronous.
111111
* <p>
112-
* This is similar to {@link #subscribe(Observer)}, but it blocks. Because it blocks it does
112+
* This is similar to {@link Observable#subscribe(Observer)}, but it blocks. Because it blocks it does
113113
* not need the {@link Observer#onCompleted()} or {@link Observer#onError(Throwable)} methods.
114114
* <p>
115115
* <img width="640" src="https://github.com/Netflix/RxJava/wiki/images/rx-operators/B.forEach.png">

0 commit comments

Comments
 (0)