From e2dc81862578b8b7f49cf7664918f1bb7998337c Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Tue, 9 Apr 2019 00:12:58 +1000 Subject: [PATCH] Fix typo in documentation (#26702) --- akka-docs/src/main/paradox/typed/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/testing.md b/akka-docs/src/main/paradox/typed/testing.md index 813d2eef62..466bfc0188 100644 --- a/akka-docs/src/main/paradox/typed/testing.md +++ b/akka-docs/src/main/paradox/typed/testing.md @@ -13,7 +13,7 @@ To use Akka TestKit Typed, add the module to your project: ## Introduction -Testing can either be done asynchronously using a real `ActorSystem` or synchronously on the testing thread using the `BehaviousTestKit`. +Testing can either be done asynchronously using a real `ActorSystem` or synchronously on the testing thread using the `BehaviourTestKit`. For testing logic in a `Behavior` in isolation synchronous testing is preferred. For testing interactions between multiple actors a more realistic asynchronous test is preferred.