From f43e5e6054cbae1e13e9638fbf08d5e8ffbe9f0e Mon Sep 17 00:00:00 2001 From: Kris Kalavantavanich Date: Wed, 14 Jul 2021 17:54:25 +0700 Subject: [PATCH] Remove the extra bracket from testing documentation (#30397) --- akka-docs/src/main/paradox/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/testing.md b/akka-docs/src/main/paradox/testing.md index 1e5ff70b3e..213c44b0c5 100644 --- a/akka-docs/src/main/paradox/testing.md +++ b/akka-docs/src/main/paradox/testing.md @@ -112,7 +112,7 @@ does a conformance check; if you need the class to be equal, @scala[have a look An object which is an instance of the given type (after erasure) must be received within the allotted time frame; the object will be returned. This method is approximately equivalent to -`expectMsgClass(implicitly[ClassTag[T]].runtimeClass)`.] +`expectMsgClass(implicitly[ClassTag[T]].runtimeClass)`. @@@