From fedd86fcb5a74489dd4be36f6192e21e1c8c7e37 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Fri, 1 Nov 2019 16:16:04 +0100 Subject: [PATCH] doc: fix link to persistence style guide (#28088) --- akka-docs/src/main/paradox/typed/persistence-testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/persistence-testing.md b/akka-docs/src/main/paradox/typed/persistence-testing.md index 782e214cc2..286b392b70 100644 --- a/akka-docs/src/main/paradox/typed/persistence-testing.md +++ b/akka-docs/src/main/paradox/typed/persistence-testing.md @@ -43,7 +43,7 @@ Java Then you can `spawn` the `EventSourcedBehavior` and verify the outcome of sending commands to the actor using the facilities of the @ref:[ActorTestKit](testing-async.md). -A full test for the `AccountEntity`, which is shown in the @ref:[Style Guide](style-guide.md), may look like this: +A full test for the `AccountEntity`, which is shown in the @ref:[Persistence Style Guide](persistence-style.md), may look like this: Scala : @@snip [AccountExampleDocSpec.scala](/akka-cluster-sharding-typed/src/test/scala/docs/akka/cluster/sharding/typed/AccountExampleDocSpec.scala) { #test }