From 1290befec87b3d8aded49a4fe5b44ed84a9021a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Dryga=C5=82a?= Date: Thu, 16 Jul 2020 13:41:18 +0200 Subject: [PATCH] Update actor-lifecycle.md (#29391) --- akka-docs/src/main/paradox/typed/actor-lifecycle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/actor-lifecycle.md b/akka-docs/src/main/paradox/typed/actor-lifecycle.md index e0af1f99c1..9a37546bbb 100644 --- a/akka-docs/src/main/paradox/typed/actor-lifecycle.md +++ b/akka-docs/src/main/paradox/typed/actor-lifecycle.md @@ -102,7 +102,7 @@ is a tool that mimics the old style of starting up actors. Child actors are created and started with @apidoc[typed.*.ActorContext]'s `spawn`. In the example below, when the root actor is started, it spawns a child actor described by the `HelloWorld` behavior. Additionally, when the root actor receives a -`Start` message, it creates a child actor defined by the behavior `HelloWorldBot`: +`SayHello` message, it creates a child actor defined by the behavior `HelloWorldBot`: Scala : @@snip [IntroSpec.scala](/akka-actor-typed-tests/src/test/scala/docs/akka/typed/IntroSpec.scala) { #hello-world-main }