From 5fdd63b0115f397313d9bb8baa7f215b6444dee1 Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Wed, 27 Nov 2019 17:52:17 +0100 Subject: [PATCH] [doc] typo, add missing `a` (#28257) --- akka-docs/src/main/paradox/general/addressing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/general/addressing.md b/akka-docs/src/main/paradox/general/addressing.md index f6091ed30a..9092f90d3a 100644 --- a/akka-docs/src/main/paradox/general/addressing.md +++ b/akka-docs/src/main/paradox/general/addressing.md @@ -73,7 +73,7 @@ An actor reference designates a single actor and the life-cycle of the reference matches that actor’s life-cycle; an actor path represents a name which may or may not be inhabited by an actor and the path itself does not have a life-cycle, it never becomes invalid. You can create an actor path without creating an actor, -but you cannot create an actor reference without creating corresponding actor. +but you cannot create an actor reference without creating a corresponding actor. You can create an actor, terminate it, and then create a new actor with the same actor path. The newly created actor is a new incarnation of the actor. It is not