From a37025fa72409bccd5383ab2d7a508d8a3370c6b Mon Sep 17 00:00:00 2001 From: Sergey Popov Date: Sat, 7 Jan 2023 23:55:22 +0300 Subject: [PATCH] Documentation fix of ActorRefExtensions.IsNobody #6313. --- src/core/Akka/Actor/ActorRef.Extensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Akka/Actor/ActorRef.Extensions.cs b/src/core/Akka/Actor/ActorRef.Extensions.cs index c1d7c36114a..3941b6fccdf 100644 --- a/src/core/Akka/Actor/ActorRef.Extensions.cs +++ b/src/core/Akka/Actor/ActorRef.Extensions.cs @@ -15,12 +15,12 @@ namespace Akka.Actor public static class ActorRefExtensions { /// - /// Determines if the specified is valid. + /// Determines if the specified is invalid. /// An is thought to be invalid if it's one of the following: /// , , and /// /// The actor that is being tested. - /// true if the is valid; otherwise false. + /// true if the is invalid; otherwise false. public static bool IsNobody(this IActorRef actorRef) { return actorRef is null || actorRef is Nobody || actorRef is DeadLetterActorRef