72263dbbc4ab60663cdaa527752e19638f70ceb7
kent
  Sun May 5 11:32:54 2013 -0700
Improving comment for netWaitForData.
diff --git src/inc/net.h src/inc/net.h
index 58106d1..d40c147 100644
--- src/inc/net.h
+++ src/inc/net.h
@@ -33,31 +33,31 @@
 
 int netAccept(int sd);
 /* Accept incoming connection from socket descriptor. */
 
 int netAcceptFrom(int sd, unsigned char subnet[4]);
 /* Wait for incoming connection from socket descriptor
  * from IP address in subnet.  Subnet is something
  * returned from netParseDottedQuad.  */
 
 FILE *netFileFromSocket(int socket);
 /* Wrap a FILE around socket.  This should be fclose'd
  * and separately the socket close'd. */
 
 int netWaitForData(int sd, int microseconds);
 /* Wait for descriptor to have some data to read, up to given number of
- * number of microseconds.  Returns amount of data there or zero if timed out. */
+ * microseconds.  Returns amount of data there or zero if timed out. */
 
 void netBlockBrokenPipes();
 /* Make it so a broken pipe doesn't kill us. */
 
 size_t netReadAll(int sd, void *vBuf, size_t size);
 /* Read given number of bytes into buffer.
  * Don't give up on first read! */
 
 int netMustReadAll(int sd, void *vBuf, size_t size);
 /* Read given number of bytes into buffer or die.
  * Don't give up if first read is short! */
 
 boolean netSendString(int sd, char *s);
 /* Send a string down a socket - length byte first. */