summaryrefslogtreecommitdiff
path: root/nuttx/net
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-08-27 09:40:19 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-08-27 09:40:19 -0600
commite84937a34489eab1669338bf8e3bb6c07e9d7295 (patch)
tree5fcaae860d74eeaf009b81a51292b3fe6c9865fd /nuttx/net
parentf760141ba6b1536afc27451db9dd90d7a207ae5f (diff)
downloadpx4-nuttx-e84937a34489eab1669338bf8e3bb6c07e9d7295.tar.gz
px4-nuttx-e84937a34489eab1669338bf8e3bb6c07e9d7295.tar.bz2
px4-nuttx-e84937a34489eab1669338bf8e3bb6c07e9d7295.zip
Fix all occurrences of "the the" in documentation and comments
Diffstat (limited to 'nuttx/net')
-rw-r--r--nuttx/net/Kconfig2
-rw-r--r--nuttx/net/net_poll.c2
-rw-r--r--nuttx/net/send.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/net/Kconfig b/nuttx/net/Kconfig
index bb60f7ecb..d3a26a587 100644
--- a/nuttx/net/Kconfig
+++ b/nuttx/net/Kconfig
@@ -175,7 +175,7 @@ config NET_TCP_SPLIT
bool "Enable packet splitting"
default n
---help---
- send() will not return until the the transfer has been ACKed by the
+ send() will not return until the transfer has been ACKed by the
recipient. But under RFC 1122, the host need not ACK each packet
immediately; the host may wait for 500 MS before ACKing. This
combination can cause very slow performance with small transfers are
diff --git a/nuttx/net/net_poll.c b/nuttx/net/net_poll.c
index 77f2f6ef7..bd27b86d7 100644
--- a/nuttx/net/net_poll.c
+++ b/nuttx/net/net_poll.c
@@ -144,7 +144,7 @@ static uint16_t poll_interrupt(FAR struct uip_driver_s *dev, FAR void *conn,
if ((flags & (UIP_CLOSE|UIP_ABORT|UIP_TIMEDOUT)) != 0)
{
- /* Make the the connection has been lost */
+ /* Marki that the connection has been lost */
net_lostconnection(info->psock, flags);
eventset |= (POLLERR | POLLHUP);
diff --git a/nuttx/net/send.c b/nuttx/net/send.c
index 37f5bb8ed..9f7c71f13 100644
--- a/nuttx/net/send.c
+++ b/nuttx/net/send.c
@@ -210,7 +210,7 @@ static uint16_t send_interrupt(FAR struct uip_driver_s *dev, FAR void *pvconn,
pstate->snd_sent = pstate->snd_acked;
#if defined(CONFIG_NET_TCP_SPLIT)
- /* Reset the the even/odd indicator to even since we need to
+ /* Reset the even/odd indicator to even since we need to
* retransmit.
*/