diff --git a/Assets/Mirror/Runtime/NetworkBehaviour.cs b/Assets/Mirror/Runtime/NetworkBehaviour.cs
index 4a44d67d1..8a26f100e 100644
--- a/Assets/Mirror/Runtime/NetworkBehaviour.cs
+++ b/Assets/Mirror/Runtime/NetworkBehaviour.cs
@@ -47,12 +47,12 @@ public class NetworkBehaviour : MonoBehaviour
public bool isLocalPlayer => netIdentity.isLocalPlayer;
///
- ///
+ /// True if this object only exists on the server
///
public bool isServerOnly => isServer && !isClient;
///
- ///
+ /// True if this object exists on a client that is not also acting as a server
///
public bool isClientOnly => isClient && !isServer;
@@ -95,7 +95,7 @@ public class NetworkBehaviour : MonoBehaviour
NetworkIdentity netIdentityCache;
///
- ///
+ /// Returns the NetworkIdentity of this object
///
public NetworkIdentity netIdentity
{
@@ -114,7 +114,7 @@ public NetworkIdentity netIdentity
}
///
- ///
+ /// Returns the index of the component on this object
///
public int ComponentIndex
{