Skip to content

Commit

Permalink
Cleanup Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Sep 5, 2013
1 parent d81f7f0 commit bd0e5c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rxjava-core/src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public static interface OnSubscribeFunc<T> extends Function {
/**
* Observable with Function to execute when subscribed to.
* <p>
* NOTE: Use {@link #create(Func1)} to create an Observable instead of this method unless you
* NOTE: Use {@link #create(OnSubscribeFunc)} to create an Observable instead of this constructor unless you
* specifically have a need for inheritance.
*
* @param onSubscribe
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private Subscription protectivelyWrapAndSubscribe(Observer<? super T> observer)
* <p>
* NOTE: This will block even if the Observable is asynchronous.
* <p>
* This is similar to {@link #subscribe(Observer)}, but it blocks. Because it blocks it does
* This is similar to {@link Observable#subscribe(Observer)}, but it blocks. Because it blocks it does
* not need the {@link Observer#onCompleted()} or {@link Observer#onError(Throwable)} methods.
* <p>
* <img width="640" src="https://github.com/Netflix/RxJava/wiki/images/rx-operators/B.forEach.png">
Expand Down

0 comments on commit bd0e5c7

Please sign in to comment.