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 }