=str fix typo in internal type (RejectAdditionalSubscribers)

This commit is contained in:
Mathias 2015-04-23 17:27:28 +02:00
parent ae430f0521
commit 15b95ab0e5
2 changed files with 2 additions and 2 deletions

View file

@ -312,7 +312,7 @@ private[stream] class VirtualPublisher[T]() extends Publisher[T] {
val sub = realPublisher.subscribe(s)
// unreference the realPublisher to facilitate GC and
// Sink.publisher is supposed to reject additional subscribers anyway
realPublisher = RejectAdditionalSubscibers[T]
realPublisher = RejectAdditionalSubscribers[T]
sub
}
}