From 9d2ab2e7145ed1e200ed29aee42f9a5734f108ab Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Thu, 15 Dec 2011 17:18:28 +0100 Subject: [PATCH] Minor edits --- akka-docs/java/typed-actors.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/java/typed-actors.rst b/akka-docs/java/typed-actors.rst index 8ed36d0ef2..d857ac509d 100644 --- a/akka-docs/java/typed-actors.rst +++ b/akka-docs/java/typed-actors.rst @@ -54,7 +54,7 @@ Our example implementation of that interface: :exclude: typed-actor-impl-methods The most trivial way of creating a Typed Actor instance -of our Squarer: +of our ``Squarer``: .. includecode:: code/akka/docs/actor/TypedActorDocTestBase.java :include: typed-actor-create1 @@ -132,7 +132,7 @@ This call is asynchronous, and the Future returned can be used for asynchronous Stopping Typed Actors --------------------- -Since Akkas Typed Actors are backed by Akka Actors they must be stopped when they aren't needed anymore. +Since Akka's Typed Actors are backed by Akka Actors they must be stopped when they aren't needed anymore. .. includecode:: code/akka/docs/actor/TypedActorDocTestBase.java :include: typed-actor-stop