Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 771616c

Browse files
authoredMay 14, 2021
3.x: Javadoc: Fix wording of *OnSubscribe interfaces (#7274)
1 parent 3ba64ce commit 771616c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
 

‎src/main/java/io/reactivex/rxjava3/core/CompletableOnSubscribe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* A functional interface that has a {@code subscribe()} method that receives
20-
* an instance of a {@link CompletableEmitter} instance that allows pushing
20+
* a {@link CompletableEmitter} instance that allows pushing
2121
* an event in a cancellation-safe manner.
2222
*/
2323
@FunctionalInterface

‎src/main/java/io/reactivex/rxjava3/core/FlowableOnSubscribe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* A functional interface that has a {@code subscribe()} method that receives
20-
* an instance of a {@link FlowableEmitter} instance that allows pushing
20+
* a {@link FlowableEmitter} instance that allows pushing
2121
* events in a backpressure-safe and cancellation-safe manner.
2222
*
2323
* @param <T> the value type pushed

‎src/main/java/io/reactivex/rxjava3/core/MaybeOnSubscribe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* A functional interface that has a {@code subscribe()} method that receives
20-
* an instance of a {@link MaybeEmitter} instance that allows pushing
20+
* a {@link MaybeEmitter} instance that allows pushing
2121
* an event in a cancellation-safe manner.
2222
*
2323
* @param <T> the value type pushed

‎src/main/java/io/reactivex/rxjava3/core/ObservableOnSubscribe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* A functional interface that has a {@code subscribe()} method that receives
20-
* an instance of an {@link ObservableEmitter} instance that allows pushing
20+
* an {@link ObservableEmitter} instance that allows pushing
2121
* events in a cancellation-safe manner.
2222
*
2323
* @param <T> the value type pushed

‎src/main/java/io/reactivex/rxjava3/core/SingleOnSubscribe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* A functional interface that has a {@code subscribe()} method that receives
20-
* an instance of a {@link SingleEmitter} instance that allows pushing
20+
* a {@link SingleEmitter} instance that allows pushing
2121
* an event in a cancellation-safe manner.
2222
*
2323
* @param <T> the value type pushed

0 commit comments

Comments
 (0)
Please sign in to comment.