Skip to content

Commit fe7e81d

Browse files
committed
Merge pull request #92 from ktoso/readme-typo-1-ktoso
typo: fixed not closed ` in 3.17
2 parents 0c9550a + 8d71cf1 commit fe7e81d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CopyrightWaivers.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ benjchristensen| Ben Christensen, [email protected], Netflix Inc.
2323
viktorklang | Viktor Klang, [email protected], Typesafe Inc.
2424
smaldini | Stephane Maldini, [email protected], Pivotal Software Inc.
2525
savulchik | Stanislav Savulchik, [email protected]
26-
26+
ktoso | Konrad Malawski, [email protected], Typesafe Inc.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public interface Subscription {
148148
| 14 | While the `Subscription` is not cancelled, invoking `Subscription.cancel` MAY cause the `Publisher` to transition into the `shut-down` state if no other `Subscription` exists at this point [see 1.17].
149149
| 15 | `Subscription.cancel` MUST NOT throw an `Exception` and MUST signal `onError` to its `Subscriber` |
150150
| 16 | `Subscription.request` MUST NOT throw an `Exception` and MUST signal `onError` to its `Subscriber` |
151-
| 17 | A `Subscription MUST support an unbounded number of calls to request and MUST support a pending request count up to 2^63-1 (java.lang.Long.MAX_VALUE). A pending request count of exactly 2^63-1 (java.lang.Long.MAX_VALUE) MAY be considered by the `Publisher` as `effectively unbounded`[1]. If more than 2^63-1 are requested in pending then it MUST signal an onError with `java.lang.IllegalStateException` on the given `Subscriber`. The cause message MUST include a reference to this rule and/or quote the full rule. |
151+
| 17 | A `Subscription` MUST support an unbounded number of calls to request and MUST support a pending request count up to 2^63-1 (`java.lang.Long.MAX_VALUE`). A pending request count of exactly 2^63-1 (`java.lang.Long.MAX_VALUE`) MAY be considered by the `Publisher` as `effectively unbounded`[1]. If more than 2^63-1 are requested in pending then it MUST signal an onError with `java.lang.IllegalStateException` on the given `Subscriber`. The cause message MUST include a reference to this rule and/or quote the full rule. |
152152
153153
[1] : As it is not feasibly reachable with current or forseen hardware within a reasonable amount of time (1 element per nanosecond would take 292 years) to fulfill a demand of 2^63-1.
154154

0 commit comments

Comments
 (0)