Merge pull request #25956 from ollyw/fix-streamref-scaladoc

Correct minor mistake in StreamRefs.sinkRef scaladoc
This commit is contained in:
Patrik Nordwall 2018-11-23 15:08:43 +01:00 committed by GitHub
commit 039bb26d2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ object StreamRefs {
/**
* A local [[Sink]] which materializes a [[SourceRef]] which can be used by other streams (including remote ones),
* to consume data from this local stream, as if they were attached in the spot of the local Sink directly.
* to consume data from this local stream, as if they were attached directly in place of the local Sink.
*
* Adheres to [[StreamRefAttributes]].
*
@ -34,8 +34,8 @@ object StreamRefs {
Sink.fromGraph(new SinkRefStageImpl[T](OptionVal.None))
/**
* A local [[Sink]] which materializes a [[SourceRef]] which can be used by other streams (including remote ones),
* to consume data from this local stream, as if they were attached in the spot of the local Sink directly.
* A local [[Source]] which materializes a [[SinkRef]] which can be used by other streams (including remote ones),
* to publish data to this local stream, as if they were attached directly in place of the local Source.
*
* Adheres to [[StreamRefAttributes]].
*