Merge pull request #554 from chk1/patch-1

Fix typo in function documentation
This commit is contained in:
Garry Newman 2021-07-07 18:56:31 +01:00 committed by GitHub
commit 2be5012647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ public bool SendChatString( string message )
} }
/// <summary> /// <summary>
/// Sends bytes the the chat room /// Sends bytes to the chat room
/// </summary> /// </summary>
public unsafe bool SendChatBytes( byte[] data ) public unsafe bool SendChatBytes( byte[] data )
{ {
@ -150,7 +150,7 @@ public unsafe bool SendChatBytes( byte[] data )
} }
/// <summary> /// <summary>
/// Sends bytes the the chat room from a unsafe buffer /// Sends bytes to the chat room from an unsafe buffer
/// </summary> /// </summary>
public unsafe bool SendChatBytesUnsafe( byte* ptr, int length ) public unsafe bool SendChatBytesUnsafe( byte* ptr, int length )
{ {