diff --git a/Source/Engine/Networking/NetworkMessage.cs b/Source/Engine/Networking/NetworkMessage.cs
index ed976b014..b6a73e344 100644
--- a/Source/Engine/Networking/NetworkMessage.cs
+++ b/Source/Engine/Networking/NetworkMessage.cs
@@ -66,7 +66,7 @@ namespace FlaxEngine.Networking
}
///
- /// Writes data of type into the message.
+ /// Writes data of type into the message.
///
public void WriteInt64(long value)
{
@@ -74,7 +74,7 @@ namespace FlaxEngine.Networking
}
///
- /// Reads and returns data of type from the message.
+ /// Reads and returns data of type from the message.
///
public long ReadInt64()
{
@@ -84,7 +84,7 @@ namespace FlaxEngine.Networking
}
///
- /// Writes data of type into the message.
+ /// Writes data of type into the message.
///
public void WriteInt32(int value)
{
@@ -92,7 +92,7 @@ namespace FlaxEngine.Networking
}
///
- /// Reads and returns data of type from the message.
+ /// Reads and returns data of type from the message.
///
public int ReadInt32()
{
@@ -102,7 +102,7 @@ namespace FlaxEngine.Networking
}
///
- /// Writes data of type into the message.
+ /// Writes data of type into the message.
///
public void WriteInt16(short value)
{
@@ -110,7 +110,7 @@ namespace FlaxEngine.Networking
}
///
- /// Reads and returns data of type from the message.
+ /// Reads and returns data of type from the message.
///
public short ReadInt16()
{