fix unbalanced quotes that mess up formatting (#23219)

This commit is contained in:
László van den Hoek 2017-06-23 11:04:20 +02:00 committed by Arnout Engelen
parent 8865691231
commit 2772236d19

View file

@ -681,7 +681,7 @@ states (for example `Try` in Scala).
## Simple processing stages
These stages can transform the rate of incoming elements since there are stages that emit multiple elements for a
single input (e.g. `mapConcat') or consume multiple elements before emitting one output (e.g. `filter`).
single input (e.g. `mapConcat`) or consume multiple elements before emitting one output (e.g. `filter`).
However, these rate transformations are data-driven, i.e. it is the incoming elements that define how the
rate is affected. This is in contrast with [detached stages](#backpressure-aware-stages) which can change their processing behavior
depending on being backpressured by downstream or not.