From a7d9cdcb120939e9cd981a120fcf608dcbe229a1 Mon Sep 17 00:00:00 2001 From: Alex Bezhan Date: Sun, 22 Jan 2017 14:18:22 +0200 Subject: [PATCH] Fix a typo --- akka-docs/rst/scala/stream/stream-flows-and-basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/rst/scala/stream/stream-flows-and-basics.rst b/akka-docs/rst/scala/stream/stream-flows-and-basics.rst index 0778932066..a2e7fa9236 100644 --- a/akka-docs/rst/scala/stream/stream-flows-and-basics.rst +++ b/akka-docs/rst/scala/stream/stream-flows-and-basics.rst @@ -23,7 +23,7 @@ Stream An active process that involves moving and transforming data. Element An element is the processing unit of streams. All operations transform and transfer elements from upstream to - downstream. Buffer sizes are always expressed as number of elements independently form the actual size of the elements. + downstream. Buffer sizes are always expressed as number of elements independently from the actual size of the elements. Back-pressure A means of flow-control, a way for consumers of data to notify a producer about their current availability, effectively slowing down the upstream producer to match their consumption speeds.