Update incorrect reactive streams spec rule number #30908 (#30909)

This commit is contained in:
Johan Andrén 2021-11-19 14:39:02 +01:00 committed by GitHub
parent 02f0679e84
commit efda4a57df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ import akka.stream.SubscriptionWithCancelException
"can not subscribe the same subscriber multiple times (see reactive-streams specification, rules 1.10 and 2.12)" "can not subscribe the same subscriber multiple times (see reactive-streams specification, rules 1.10 and 2.12)"
final val SupportsOnlyASingleSubscriber = final val SupportsOnlyASingleSubscriber =
"only supports one subscriber (which is allowed, see reactive-streams specification, rule 1.12)" "only supports one subscriber (which is allowed, see reactive-streams specification, rule 1.11)"
final val NumberOfElementsInRequestMustBePositiveMsg = final val NumberOfElementsInRequestMustBePositiveMsg =
"The number of requested elements must be > 0 (see reactive-streams specification, rule 3.9)" "The number of requested elements must be > 0 (see reactive-streams specification, rule 3.9)"