diff --git a/akka-docs/java/typed-actors.rst b/akka-docs/java/typed-actors.rst index 799e5f030c..c1de57c396 100644 --- a/akka-docs/java/typed-actors.rst +++ b/akka-docs/java/typed-actors.rst @@ -22,7 +22,8 @@ Typed actors are nice for bridging between actor systems (the “inside”) and non-actor code (the “outside”), because they allow you to write normal OO-looking code on the outside. Think of them like doors: their practicality lies in interfacing between private sphere and the public, but you don’t want -that many doors inside your house, do you? +that many doors inside your house, do you? For a longer discussion see `this +blog post `_. A bit more background: TypedActors can very easily be abused as RPC, and that is an abstraction which is `well-known diff --git a/akka-docs/scala/typed-actors.rst b/akka-docs/scala/typed-actors.rst index 1b88cd44f8..8db250fec1 100644 --- a/akka-docs/scala/typed-actors.rst +++ b/akka-docs/scala/typed-actors.rst @@ -22,7 +22,8 @@ Typed actors are nice for bridging between actor systems (the “inside”) and non-actor code (the “outside”), because they allow you to write normal OO-looking code on the outside. Think of them like doors: their practicality lies in interfacing between private sphere and the public, but you don’t want -that many doors inside your house, do you? +that many doors inside your house, do you? For a longer discussion see `this +blog post `_. A bit more background: TypedActors can very easily be abused as RPC, and that is an abstraction which is `well-known