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