Minor documentation fixes (#25462)

* Fix indefinite wording

Fix indefinite error introduced in https://github.com/akka/akka/pull/25219

* Fix indefinite wording

Fix indefinite wording error introduced in https://github.com/akka/akka/pull/25117
This commit is contained in:
Andras Szatmari 2018-08-11 13:13:15 +02:00 committed by Konrad `ktoso` Malawski
parent 32a7c9a8fc
commit 84ced6f501
2 changed files with 5 additions and 5 deletions

View file

@ -498,7 +498,7 @@ or the downstreams. Even for operators that do not complete or fail in this mann
## Extending Flow Operators with Custom Operators
The most general way of extending any `Source`, `Flow` or `SubFlow` (e.g. from `groupBy`) is
demonstrated above: create a operator of flow-shape like the `Duplicator` example given above and use the `.via(...)`
demonstrated above: create an operator of flow-shape like the `Duplicator` example given above and use the `.via(...)`
operator to integrate it into your stream topology. This works with all `FlowOps` sub-types, including the
ports that you connect with the graph DSL.

View file

@ -63,15 +63,15 @@ can hand it back for further use to an underlying thread-pool.
Linear processing pipelines can be expressed in Akka Streams using the following core abstractions:
Source
: A operator with *exactly one output*, emitting data elements whenever downstream operators are
: An operator with *exactly one output*, emitting data elements whenever downstream operators are
ready to receive them.
Sink
: A operator with *exactly one input*, requesting and accepting data elements possibly slowing down the upstream
producer of elements
: An operator with *exactly one input*, requesting and accepting data elements, possibly slowing down the upstream
producer of elements.
Flow
: A operator which has *exactly one input and output*, which connects its upstream and downstream by
: An operator which has *exactly one input and output*, which connects its upstream and downstream by
transforming the data elements flowing through it.
RunnableGraph