Fix casing of the "to" stop word in editor strings
This also fixes a C# documentation example that had one of its strings incorrectly converted.
This commit is contained in:
@ -148,7 +148,7 @@
|
||||
var socket = new PacketPeerUDP();
|
||||
// Server
|
||||
socket.SetDestAddress("127.0.0.1", 789);
|
||||
socket.PutPacket("Time To Stop".ToAscii());
|
||||
socket.PutPacket("Time to stop".ToAscii());
|
||||
|
||||
// Client
|
||||
while (socket.Wait() == OK)
|
||||
|
||||
Reference in New Issue
Block a user