Skip to content

Commit 771616c

Browse files
authored
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

Diff for: src/main/java/io/reactivex/rxjava3/core/CompletableOnSubscribe.java

+1-1
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

Diff for: src/main/java/io/reactivex/rxjava3/core/FlowableOnSubscribe.java

+1-1
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

Diff for: src/main/java/io/reactivex/rxjava3/core/MaybeOnSubscribe.java

+1-1
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

Diff for: src/main/java/io/reactivex/rxjava3/core/ObservableOnSubscribe.java

+1-1
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

Diff for: src/main/java/io/reactivex/rxjava3/core/SingleOnSubscribe.java

+1-1
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)