Fix typos

This commit is contained in:
Nathan Hartman 2019-09-11 08:59:08 -06:00 committed by Gregory Nutt
parent 6a6e9d1aa8
commit b2a3ba57ff
8 changed files with 9 additions and 9 deletions

View File

@ -1016,7 +1016,7 @@ examples/nxterm
a medium grey.
CONFIG_EXAMPLES_NXTERM_MINOR -- The NX console device minor number.
Default is 0 corresponding to /dev/nxterm0
CONFIG_EXAMPLES_NXTERM_DEVNAME -- The quoated, full path to the
CONFIG_EXAMPLES_NXTERM_DEVNAME -- The quoted, full path to the
NX console device corresponding to CONFIG_EXAMPLES_NXTERM_MINOR.
Default: "/dev/nxterm0"
CONFIG_EXAMPLES_NXTERM_PRIO - Priority of the NxTerm task.

View File

@ -447,7 +447,7 @@ static void test_angle_el_update_cw_overflow(void)
p = 8;
motor_angle_init(&angle, p);
/* Update electrical angle to acheive full mechanical roatation */
/* Update electrical angle to achieve full mechanical rotation */
angle_step = 0.1;
expected_e = angle_step;
@ -507,7 +507,7 @@ static void test_angle_el_update_ccw_overflow(void)
p = 8;
motor_angle_init(&angle, p);
/* Update electrical angle to acheive full mechanical roatation */
/* Update electrical angle to achieve full mechanical rotation */
angle_step = 0.1;
expected_e = MOTOR_ANGLE_E_MAX - angle_step;

View File

@ -204,7 +204,7 @@
Destructor needs to by public. From Petteri Aimonen.
* NxWidgets::CNumericEdit. This is basically a label with plus and minus buttons.
Contributed by Petteri, Aimonen.
* NxWM::CStartWindow: Fix mq_receive error handling with signal is recieved.
* NxWM::CStartWindow: Fix mq_receive error handling with signal is received.
From Petteri Aimonen.
* NxWidgets::CNxTimer: Replace the original (apparently non-functional) signal-
based solution with a work queue-based solution. This raises some isses about

View File

@ -204,7 +204,7 @@
Destructor needs to by public. From Petteri Aimonen.
* NxWidgets::CNumericEdit. This is basically a label with plus and minus buttons.
Contributed by Petteri, Aimonen.
* NxWM::CStartWindow: Fix mq_receive error handling with signal is recieved.
* NxWM::CStartWindow: Fix mq_receive error handling with signal is received.
From Petteri Aimonen.
* NxWidgets::CNxTimer: Replace the original (apparently non-functional) signal-
based solution with a work queue-based solution. This raises some isses about

View File

@ -760,7 +760,7 @@ void CTaskbar::getDisplaySize(FAR struct nxgl_size_s &size)
*
* NOTE: Actually, NxWM uses the CWindowMessenger class that inherits from
* CWidgetControl. That class just adds some unrelated messaging capability;
* It cohabitates with CWidgetControl only becuase it needs the CWidgetControl
* It cohabitates with CWidgetControl only because it needs the CWidgetControl
* this point.
*/

View File

@ -18,7 +18,7 @@ config PDCURSES_CHTYPE_LONG
default n
config PDCURSES_DEBUG
bool "Enable pdcurses debug ouput"
bool "Enable pdcurses debug output"
default n
config PDCURSES_PANEL_DEBUG

View File

@ -121,7 +121,7 @@ namespace NxWM
*
* NOTE: Actually, NxWM uses the CWindowMessenger class that inherits from
* CWidgetControl. That class just adds some unrelated messaging capability;
* It cohabitates with CWidgetControl only becuase it needs the CWidgetControl
* It cohabitates with CWidgetControl only because it needs the CWidgetControl
* this point.
*/

View File

@ -94,7 +94,7 @@ FAR char *ftpc_rpwd(SESSION handle)
/* Response is like: 257 "/home/gnutt" (from vsftpd).
*
* Extract the quoated path name into allocated memory.
* Extract the quoted path name into allocated memory.
*/
start = strchr(session->reply, '\"');