samples/net/SocketSample: Fixed wrong explanation in comment
authorJerome St-Louis <jerome@ecere.com>
Mon, 13 Feb 2012 16:40:03 +0000 (23:40 +0700)
committerJerome St-Louis <jerome@ecere.com>
Mon, 13 Feb 2012 16:40:03 +0000 (23:40 +0700)
samples/net/SocketSample/socketSample.ec

index e8eabe5..48945f1 100644 (file)
@@ -88,7 +88,7 @@ class SocketSample : Window
 
       // The Send button is disabled if we're not connected
       btnSend.disabled = !connected;
-      // The Connect button is disabled if we haven't defined a connectedSocket yet
+      // The Connect button is disabled if we've already defined a connectedSocket
       btnConnect.disabled = connectedSocket != null;
       // The Listen button is disabled if we're already listening
       btnListen.disabled = listening;