From 190d2b6a627c4e9e14b338579b1117dcc23282d2 Mon Sep 17 00:00:00 2001 From: Stefano Baghino Date: Mon, 5 Oct 2020 09:18:25 +0200 Subject: [PATCH] shutdown it down -> shut it down (#29686) --- akka-docs/src/main/paradox/stream/stream-cookbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/stream/stream-cookbook.md b/akka-docs/src/main/paradox/stream/stream-cookbook.md index 531639c252..8aa04a9421 100644 --- a/akka-docs/src/main/paradox/stream/stream-cookbook.md +++ b/akka-docs/src/main/paradox/stream/stream-cookbook.md @@ -237,7 +237,7 @@ Java ### Adhoc source **Situation:** The idea is that you have a source which you don't want to start until you have a demand. -Also, you want to shutdown it down when there is no more demand, and start it up again there is new demand again. +Also, you want to shut it down when there is no more demand, and start it up again there is new demand again. You can achieve this behavior by combining `lazily`, `backpressureTimeout` and `recoverWithRetries` as follows: