summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-17 17:58:24 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-17 17:58:24 -0600
commite4b8618efac3ba770c6dc53afba6243949a30b00 (patch)
treefefb40812264b8844bd69d617d9b6e39ce5a86ad
parent1687baef2ec89857283e4cf481f3f6b575af1f73 (diff)
downloadnuttx-e4b8618efac3ba770c6dc53afba6243949a30b00.tar.gz
nuttx-e4b8618efac3ba770c6dc53afba6243949a30b00.tar.bz2
nuttx-e4b8618efac3ba770c6dc53afba6243949a30b00.zip
Cosmet updates to some comments
-rw-r--r--NxWidgets/UnitTests/nxwm/nxwm_main.cxx4
-rw-r--r--NxWidgets/nxwm/src/cmediaplayer.cxx2
-rw-r--r--nuttx/sched/Kconfig2
3 files changed, 4 insertions, 4 deletions
diff --git a/NxWidgets/UnitTests/nxwm/nxwm_main.cxx b/NxWidgets/UnitTests/nxwm/nxwm_main.cxx
index 1fddfeb28..13e0bd8b1 100644
--- a/NxWidgets/UnitTests/nxwm/nxwm_main.cxx
+++ b/NxWidgets/UnitTests/nxwm/nxwm_main.cxx
@@ -772,7 +772,7 @@ int nxwm_main(int argc, char *argv[])
#ifdef CONFIG_NXWM_TOUCHSCREEN
#ifdef CONFIG_NXWM_TOUCHSCREEN_CONFIGDATA
- // There are two possibilies: (1) We started the calibration earlier and now
+ // There are two possibilities: (1) We started the calibration earlier and now
// need to obtain the calibration data from the calibration process, or (2)
// We have already obtained stored calibration data in which case, the calibration
// process never ran.
@@ -782,7 +782,7 @@ int nxwm_main(int argc, char *argv[])
{
// Since we started the touchscreen calibration program maximized, it will
// run immediately when we start the window manager. There is no positive
- // handshake to know whenthe touchscreen has been calibrated. If we really
+ // handshake to know when the touchscreen has been calibrated. If we really
// want to know, we have to poll
printf("nxwm_main: Waiting for touchscreen calibration\n");
diff --git a/NxWidgets/nxwm/src/cmediaplayer.cxx b/NxWidgets/nxwm/src/cmediaplayer.cxx
index 0c4831076..14ca32eed 100644
--- a/NxWidgets/nxwm/src/cmediaplayer.cxx
+++ b/NxWidgets/nxwm/src/cmediaplayer.cxx
@@ -1102,7 +1102,7 @@ void CMediaPlayer::checkFileSelection(void)
if (!openMediaFile(m_listbox->getSelectedOption()))
{
// Go to the STOPPED state on a failure to open the media file
- // The play button will be disable because m_fileIndex == -1.
+ // The play button will be disabled because m_fileIndex == -1.
gdbg("openMediaFile failed\n");
m_fileIndex = -1;
diff --git a/nuttx/sched/Kconfig b/nuttx/sched/Kconfig
index 8ae4176b9..b46e7320b 100644
--- a/nuttx/sched/Kconfig
+++ b/nuttx/sched/Kconfig
@@ -249,7 +249,7 @@ config PREALLOC_CHILDSTATUS
setting is not defined or if it is defined to be zero then a value
of 2*MAX_TASKS is used.
- Note that there cannot be more that MAX_TASKS tasks in total.
+ Note that there cannot be more than MAX_TASKS tasks in total.
However, the number of child status structures may need to be
significantly larger because this number includes the maximum number
of tasks that are running PLUS the number of tasks that have exit'ed