From 1f9d0cf9e017f9a3152e8b9a5b5b829cb719f848 Mon Sep 17 00:00:00 2001 From: netcomm Date: Mon, 20 Jul 2015 14:07:00 +0800 Subject: [PATCH] Update stream-composition.rst --- akka-docs-dev/rst/scala/stream-composition.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs-dev/rst/scala/stream-composition.rst b/akka-docs-dev/rst/scala/stream-composition.rst index 974507c3b2..4172e4878a 100644 --- a/akka-docs-dev/rst/scala/stream-composition.rst +++ b/akka-docs-dev/rst/scala/stream-composition.rst @@ -297,7 +297,7 @@ on others: The effect is, that each module inherits the ``inputBuffer`` attribute from its enclosing parent, unless it has the same attribute explicitly set. ``nestedSource`` gets the default attributes from the materializer itself. ``nestedSink`` -on the other hand has this attribute set, so it will be used by all nested modules. ``nestedFlow`` will inherit from ``nestedSource`` +on the other hand has this attribute set, so it will be used by all nested modules. ``nestedFlow`` will inherit from ``nestedSink`` except the ``map`` stage which has again an explicitly provided attribute overriding the inherited one. |