From 05c7975dc0849ae8c8a8b9e4a2034de072096c4c Mon Sep 17 00:00:00 2001 From: Vitor de Moraes Date: Tue, 11 Jul 2017 04:11:01 -0300 Subject: [PATCH] Fix link to the actor lifecycle (#23300) --- akka-docs/src/main/paradox/scala/guide/tutorial_1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/scala/guide/tutorial_1.md b/akka-docs/src/main/paradox/scala/guide/tutorial_1.md index 3ffe818b66..4ab857de83 100644 --- a/akka-docs/src/main/paradox/scala/guide/tutorial_1.md +++ b/akka-docs/src/main/paradox/scala/guide/tutorial_1.md @@ -149,7 +149,7 @@ We see that when we stopped actor `first` it recursively stopped actor `second` This ordering is strict, _all_ `postStop()` hooks of the children are called before the `postStop()` hook of the parent is called. -The family of these lifecycle hooks is rich, and we recommend reading [the actor lifecycle](http://doc.akka.io/docs/akka/current/scala/actors.html#Actor_Lifecycle) section of the reference for all details. +The family of these lifecycle hooks is rich, and we recommend reading @ref[the actor lifecycle](../actors.md#actor-lifecycle) section of the reference for all details. ### Hierarchy and Failure Handling (Supervision)