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:
Hugo Locurcio
2021-07-13 15:25:56 +02:00
parent b44b277f6f
commit a3fbd68781
7 changed files with 11 additions and 11 deletions

View File

@ -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)