diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2015-11-21 13:31:25 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2015-12-09 08:39:12 +0100 |
commit | 8c4f19e79d3e8ac8bc8c283073dce5ccfbf222b5 (patch) | |
tree | c1124b6d4957389006024d1e1baa5de56e207fec /demos/misc/udp_chat | |
parent | 8639cecf4cedd56452b47503be19c44b304cd02f (diff) |
Use upper-cased first letter at the start of comment sentences
Diffstat (limited to 'demos/misc/udp_chat')
-rw-r--r-- | demos/misc/udp_chat/chat.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/misc/udp_chat/chat.gd b/demos/misc/udp_chat/chat.gd index a2d52bf126..71286895f4 100644 --- a/demos/misc/udp_chat/chat.gd +++ b/demos/misc/udp_chat/chat.gd @@ -5,7 +5,7 @@ extends Panel # (UDP can lose packets and you won't normally find out, so don't do a chat this way) # This is just a demo that shows how to use the UDP class. -# member variables +# Member variables var udp = PacketPeerUDP.new() |