From 3eacc55b1e59671e90f0af6580df5e3eb288ac9c Mon Sep 17 00:00:00 2001 From: Christoph Kisfeld Date: Thu, 22 Apr 2021 19:43:40 +0200 Subject: [PATCH] Fix typo in function documentation --- Facepunch.Steamworks/Structs/Lobby.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Facepunch.Steamworks/Structs/Lobby.cs b/Facepunch.Steamworks/Structs/Lobby.cs index 506fc6c..4cb40b8 100644 --- a/Facepunch.Steamworks/Structs/Lobby.cs +++ b/Facepunch.Steamworks/Structs/Lobby.cs @@ -139,7 +139,7 @@ public bool SendChatString( string message ) } /// - /// Sends bytes the the chat room + /// Sends bytes to the chat room /// public unsafe bool SendChatBytes( byte[] data ) { @@ -150,7 +150,7 @@ public unsafe bool SendChatBytes( byte[] data ) } /// - /// Sends bytes the the chat room from a unsafe buffer + /// Sends bytes to the chat room from an unsafe buffer /// public unsafe bool SendChatBytesUnsafe( byte* ptr, int length ) {