We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e8e372 commit 8b23a2eCopy full SHA for 8b23a2e
examples/src/main/java/org/reactivestreams/example/unicast/AsyncSubscriber.java
@@ -199,7 +199,7 @@ else if (s instanceof OnSubscribe)
199
handleOnSubscribe(((OnSubscribe)s).subscription);
200
else if (s instanceof OnError) // We are always able to handle OnError, obeying rule 2.10
201
handleOnError(((OnError)s).error);
202
- else if (s == OnComplete.Instance) // We are always able to handle OnError, obeying rule 2.9
+ else if (s == OnComplete.Instance) // We are always able to handle OnComplete, obeying rule 2.9
203
handleOnComplete();
204
}
205
} finally {
@@ -235,4 +235,4 @@ private final void tryScheduleToExecute() {
235
236
237
238
-}
+}
0 commit comments