summaryrefslogtreecommitdiff
path: root/nuttx/examples
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-06-25 17:44:35 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-06-25 17:44:35 +0000
commit018ff6e65dcc563321d27d010e693dd8413e2f45 (patch)
treecd6fc22d2130b328328f2aeef39b8758673ec132 /nuttx/examples
parent50d5e799e29f7d1da649d43fee8382cdffe3fc89 (diff)
downloadpx4-nuttx-018ff6e65dcc563321d27d010e693dd8413e2f45.tar.gz
px4-nuttx-018ff6e65dcc563321d27d010e693dd8413e2f45.tar.bz2
px4-nuttx-018ff6e65dcc563321d27d010e693dd8413e2f45.zip
Consolidate buffer dumping; fix all occurrences of 'the the'
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1951 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples')
-rw-r--r--nuttx/examples/README.txt2
-rw-r--r--nuttx/examples/nsh/README.txt4
-rw-r--r--nuttx/examples/nsh/nsh_netcmds.c2
-rw-r--r--nuttx/examples/nxflat/nxflat_main.c2
-rw-r--r--nuttx/examples/nxflat/tests/hello++/Makefile2
-rw-r--r--nuttx/examples/pashello/device.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/nuttx/examples/README.txt b/nuttx/examples/README.txt
index 08c425b14..b31c37490 100644
--- a/nuttx/examples/README.txt
+++ b/nuttx/examples/README.txt
@@ -349,7 +349,7 @@ examples/usbserial
dmesg
- At the end of the dmesg output, you should see the the seria
+ At the end of the dmesg output, you should see the serial
device was successfully idenfied and assigned to a tty device,
probably /dev/ttyUSB0.
diff --git a/nuttx/examples/nsh/README.txt b/nuttx/examples/nsh/README.txt
index 17a541eef..e663071fc 100644
--- a/nuttx/examples/nsh/README.txt
+++ b/nuttx/examples/nsh/README.txt
@@ -551,7 +551,7 @@ o mount -t <fstype> <block-device> <dir-path>
create whatever psuedo directories that may be needed to complete
the full path but the full path must not already exist.
- After the the volume has been mounted in the NuttX psuedo file
+ After the volume has been mounted in the NuttX psuedo file
system, it may be access in the same way as other objects in the
file system.
@@ -898,7 +898,7 @@ NSH-Specific Configuration Settings
receiving TELNET commands/reponses
* CONFIG_EXAMPLES_NSH_DHCPC
- Obtain the the IP address via DHCP.
+ Obtain the IP address via DHCP.
* CONFIG_EXAMPLES_NSH_IPADDR
If CONFIG_EXAMPLES_NSH_DHCPC is NOT set, then the static IP
diff --git a/nuttx/examples/nsh/nsh_netcmds.c b/nuttx/examples/nsh/nsh_netcmds.c
index 3d64e662f..27ab06421 100644
--- a/nuttx/examples/nsh/nsh_netcmds.c
+++ b/nuttx/examples/nsh/nsh_netcmds.c
@@ -719,7 +719,7 @@ int cmd_wget(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
fullpath = nsh_getfullpath(vtbl, localfile);
- /* Open the the local file for writing */
+ /* Open the local file for writing */
fd = open(fullpath, O_WRONLY|O_CREAT|O_TRUNC, 0644);
if (fd < 0)
diff --git a/nuttx/examples/nxflat/nxflat_main.c b/nuttx/examples/nxflat/nxflat_main.c
index f8f608488..78146b913 100644
--- a/nuttx/examples/nxflat/nxflat_main.c
+++ b/nuttx/examples/nxflat/nxflat_main.c
@@ -93,7 +93,7 @@
#define ROMFSDEV "/dev/ram0"
#define MOUNTPT "/mnt/romfs"
-/* If CONFIG_DEBUG is enabled, use dbg instead of printf so that the the
+/* If CONFIG_DEBUG is enabled, use dbg instead of printf so that the
* output will be synchronous with the debug output.
*/
diff --git a/nuttx/examples/nxflat/tests/hello++/Makefile b/nuttx/examples/nxflat/tests/hello++/Makefile
index e28281619..113520da5 100644
--- a/nuttx/examples/nxflat/tests/hello++/Makefile
+++ b/nuttx/examples/nxflat/tests/hello++/Makefile
@@ -123,7 +123,7 @@ $(BIN2): $(BIN2).r2
@$(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
# BIN3 and BIN4 require that we include --cxx in the xflat-ld command.
-# This will instruct xflat-ld that we want it to put togethe the correct
+# This will instruct xflat-ld that we want it to put together the correct
# startup files to handle the C++ static initializers.
#
# BIN3 is equivalent to BIN2 except that is uses static initializers
diff --git a/nuttx/examples/pashello/device.c b/nuttx/examples/pashello/device.c
index b4401531a..def8f60ec 100644
--- a/nuttx/examples/pashello/device.c
+++ b/nuttx/examples/pashello/device.c
@@ -85,7 +85,7 @@ static ssize_t hello_read(struct file *filep, char *buffer, size_t len)
if (offset < hello_pex_len)
{
- /* Make sure the the read does not extend beyond the .pex file */
+ /* Make sure the read does not extend beyond the .pex file */
nread = len;
if (nread + offset > hello_pex_len)