diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-07-13 15:25:56 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-07-13 15:29:06 +0200 |
commit | a3fbd68781fe54f0e4075da7f126e1522c7e1c1f (patch) | |
tree | bc00eb8a1803dc99cff15615766c526ac850fd84 /doc | |
parent | b44b277f6f2f22124c47d63551591056791474c0 (diff) |
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.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/PacketPeerUDP.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/PacketPeerUDP.xml b/doc/classes/PacketPeerUDP.xml index 5d059ad3df..2707df612c 100644 --- a/doc/classes/PacketPeerUDP.xml +++ b/doc/classes/PacketPeerUDP.xml @@ -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) |