From c0e90a0e7082cb08abeec8341f5801a421cb8fd9 Mon Sep 17 00:00:00 2001 From: Oliver Lockwood Date: Mon, 24 Jul 2017 15:34:29 +0100 Subject: [PATCH] Fix reference to Hitch-Hiker's Guide (#23410) --- .../src/test/scala/docs/actor/SharedMutableStateDocSpec.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/src/test/scala/docs/actor/SharedMutableStateDocSpec.scala b/akka-docs/src/test/scala/docs/actor/SharedMutableStateDocSpec.scala index 6af4d5bc95..7aaba27ec5 100644 --- a/akka-docs/src/test/scala/docs/actor/SharedMutableStateDocSpec.scala +++ b/akka-docs/src/test/scala/docs/actor/SharedMutableStateDocSpec.scala @@ -34,12 +34,12 @@ class SharedMutableStateDocSpec { def expensiveCalculation(actorRef: ActorRef): String = { // this is a very costly operation - "Meaning of live is 42" + "Meaning of life is 42" } def expensiveCalculation(): String = { // this is a very costly operation - "Meaning of live is 42" + "Meaning of life is 42" } def receive = {