From 409f3a541bc2df307e628ec68473c268de15706f Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Mon, 2 Dec 2019 11:42:25 +0100 Subject: [PATCH] [doc] typo, add missing `response` (#28287) --- akka-docs/src/main/paradox/typed/interaction-patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/interaction-patterns.md b/akka-docs/src/main/paradox/typed/interaction-patterns.md index 59b969937e..6497a661f8 100644 --- a/akka-docs/src/main/paradox/typed/interaction-patterns.md +++ b/akka-docs/src/main/paradox/typed/interaction-patterns.md @@ -228,7 +228,7 @@ Java ## Send Future result to self When using an API that returns a @scala[`Future`]@java[`CompletionStage`] from an actor it's common that you would -like to use the value of the in the actor when the @scala[`Future`]@java[`CompletionStage`] is completed. For +like to use the value of the response in the actor when the @scala[`Future`]@java[`CompletionStage`] is completed. For this purpose the `ActorContext` provides a `pipeToSelf` method. **Example:**