Fixed typo: Weather --> Whether

This commit is contained in:
Tufan Meriç Uyguner 2021-08-30 01:37:29 +03:00 committed by GitHub
parent dc82be7a33
commit dabe718c61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ namespace LightReflectiveMirror
/// <param name="serverData">Extra data the host can include</param> /// <param name="serverData">Extra data the host can include</param>
/// <param name="useDirectConnect">Weather or not, the host is capable of doing direct connections</param> /// <param name="useDirectConnect">Weather or not, the host is capable of doing direct connections</param>
/// <param name="hostLocalIP">The hosts local IP</param> /// <param name="hostLocalIP">The hosts local IP</param>
/// <param name="useNatPunch">Weather or not, the host is supporting NAT Punch</param> /// <param name="useNatPunch">Whether or not, the host is supporting NAT Punch</param>
/// <param name="port">The port of the direct connect transport on the host</param> /// <param name="port">The port of the direct connect transport on the host</param>
private void CreateRoom(int clientId, int maxPlayers, string serverName, bool isPublic, string serverData, bool useDirectConnect, string hostLocalIP, bool useNatPunch, int port) private void CreateRoom(int clientId, int maxPlayers, string serverName, bool isPublic, string serverData, bool useDirectConnect, string hostLocalIP, bool useNatPunch, int port)
{ {
@ -202,4 +202,4 @@ namespace LightReflectiveMirror
} }
} }
} }
} }