@@ -29,7 +29,7 @@ public interface PublisherVerificationRules {
29
29
*/
30
30
void required_validate_boundedDepthOfOnNextAndRequestRecursion () throws Exception ;
31
31
/**
32
- * Asks for a {@code Publisher} that should emit exaclty one item and complete (both within a
32
+ * Asks for a {@code Publisher} that should emit exactly one item and complete (both within a
33
33
* timeout specified by {@link org.reactivestreams.tck.TestEnvironment#defaultTimeoutMillis()}).
34
34
* <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} returns zero.
35
35
* <p>This test mostly ensures that the {@code Publisher} implementation is actually operational.
@@ -49,7 +49,7 @@ public interface PublisherVerificationRules {
49
49
*/
50
50
void required_createPublisher1MustProduceAStreamOfExactly1Element () throws Throwable ;
51
51
/**
52
- * Asks for a {@code Publisher} that should emit exaclty three items and complete (all within a
52
+ * Asks for a {@code Publisher} that should emit exactly three items and complete (all within a
53
53
* timeout specified by {@link org.reactivestreams.tck.TestEnvironment#defaultTimeoutMillis()}).
54
54
* <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} is less than 3.
55
55
* <p>This test mostly ensures that the {@code Publisher} implementation is actually operational.
@@ -338,7 +338,7 @@ public interface PublisherVerificationRules {
338
338
void required_spec303_mustNotAllowUnboundedRecursion () throws Throwable ;
339
339
/**
340
340
* Currently, this test is skipped because a {@code request} could enter into a synchronous computation via {@code onNext}
341
- * legally and otherwise there is no common agreement on what constitutes as heavy computation.
341
+ * legally and otherwise there is no common agreement how to detect such heavy computation reliably .
342
342
* @throws Exception allow arbitrary exceptions to be thrown by the implementation of this test
343
343
*/
344
344
void untested_spec304_requestShouldNotPerformHeavyComputations () throws Exception ;
@@ -381,7 +381,7 @@ public interface PublisherVerificationRules {
381
381
* <p>Note that this test expects the {@code IllegalArgumentException} being signalled through {@code onError}, not by
382
382
* throwing from {@code request()} (which is also forbidden) or signalling the error by any other means (i.e., through the
383
383
* Thread.currentThread().getUncaughtExceptionHandler() for example).
384
- * <p>Note also that requesting and emission may happen concurrently and honoring this rule may require extra serialization within
384
+ * <p>Note also that requesting and emission may happen concurrently and honoring this rule may require extra coordination within
385
385
* the {@code Publisher}.
386
386
* <p>If this test fails, the following could be checked within the {@code Publisher} implementation:
387
387
* <ul>
0 commit comments