Fix some recurring typos: postion->position, *atino->*ation
This commit is contained in:
parent
2582238ca5
commit
0da9aaeb09
|
@ -1392,7 +1392,7 @@ struct xyz_info_s
|
|||
<h2>2.7 <a name="enumerations">Enumerations</a></h2>
|
||||
<p>
|
||||
<b>Enumeration Naming</b>.
|
||||
Naming of enumeratinos follow the same naming rules as for <a href="#structures">structure</a> and <a href=#unions">union</a> naming.
|
||||
Naming of enumerations follow the same naming rules as for <a href="#structures">structure</a> and <a href=#unions">union</a> naming.
|
||||
The only difference is that the suffix <code>_e</code> is used to identify an enumeration.
|
||||
</p>
|
||||
<p>
|
||||
|
|
|
@ -227,7 +227,7 @@ static void stmpe811_enable(FAR struct stmpe811_config_s *state, bool enable)
|
|||
|
||||
/* Attach and enable, or detach and disable. Enabling and disabling GPIO
|
||||
* interrupts is a multi-step process so the safest thing is to keep
|
||||
* interrupts disabled during the reconfiguratino.
|
||||
* interrupts disabled during the reconfiguration.
|
||||
*/
|
||||
|
||||
flags = irqsave();
|
||||
|
|
|
@ -227,7 +227,7 @@ static void stmpe811_enable(FAR struct stmpe811_config_s *state, bool enable)
|
|||
|
||||
/* Attach and enable, or detach and disable. Enabling and disabling GPIO
|
||||
* interrupts is a multi-step process so the safest thing is to keep
|
||||
* interrupts disabled during the reconfiguratino.
|
||||
* interrupts disabled during the reconfiguration.
|
||||
*/
|
||||
|
||||
flags = irqsave();
|
||||
|
|
|
@ -552,7 +552,7 @@ config USBMSC_BULKOUTREQLEN
|
|||
the completed READ request to the caller as each packet is received.
|
||||
Therefore, there is no benefit in increasing the size of this buffer
|
||||
beyond the maximum size of one packet. Default: 512 or 64 bytes
|
||||
(depending upon if dual speed operatino is supported or not).
|
||||
(depending upon if dual speed operation is supported or not).
|
||||
|
||||
config USBMSC_VENDORID
|
||||
hex "Mass storage Vendor ID"
|
||||
|
|
|
@ -175,7 +175,7 @@ static int usbhost_disconnected(FAR struct usbhost_class_s *class);
|
|||
* Private Data
|
||||
****************************************************************************/
|
||||
|
||||
/* This structure provides the registry entry ID informatino that will be
|
||||
/* This structure provides the registry entry ID information that will be
|
||||
* used to associate the USB class driver to a connected USB device.
|
||||
*/
|
||||
|
||||
|
|
|
@ -257,7 +257,7 @@ static int usbhost_ioctl(FAR struct inode *inode, int cmd,
|
|||
* Private Data
|
||||
****************************************************************************/
|
||||
|
||||
/* This structure provides the registry entry ID informatino that will be
|
||||
/* This structure provides the registry entry ID information that will be
|
||||
* used to associate the USB host mass storage class to a connected USB
|
||||
* device.
|
||||
*/
|
||||
|
|
|
@ -189,7 +189,7 @@ void NXGL_FUNCNAME(nxgl_moverectangle,NXGLIB_SUFFIX)
|
|||
|
||||
/* Case 1: Is the destination position above the displayed position?
|
||||
* If the destination position is less then then the src address, then the
|
||||
* destination is offset to a postion below (and or to the left) of the
|
||||
* destination is offset to a position below (and or to the left) of the
|
||||
* source in framebuffer memory.
|
||||
*/
|
||||
|
||||
|
|
|
@ -233,7 +233,7 @@ static void work_process(FAR struct wqueue_s *wqueue)
|
|||
* These worker threads are started by the OS during normal bringup.
|
||||
*
|
||||
* work_usrthread: This is a user mode work queue. It must be built into
|
||||
* the applicatino blob during the user phase of a kernel build. The
|
||||
* the application blob during the user phase of a kernel build. The
|
||||
* user work thread will then automatically be started when the system
|
||||
* boots by calling through the pointer found in the header on the user
|
||||
* space blob.
|
||||
|
|
|
@ -85,7 +85,7 @@ int task_reparent(pid_t ppid, pid_t chpid)
|
|||
irqstate_t flags;
|
||||
int ret;
|
||||
|
||||
/* Disable interrupts so that nothing can change in the relatinoship of
|
||||
/* Disable interrupts so that nothing can change in the relationship of
|
||||
* the three task: Child, current parent, and new parent.
|
||||
*/
|
||||
|
||||
|
@ -217,7 +217,7 @@ int task_reparent(pid_t ppid, pid_t chpid)
|
|||
irqstate_t flags;
|
||||
int ret;
|
||||
|
||||
/* Disable interrupts so that nothing can change in the relatinoship of
|
||||
/* Disable interrupts so that nothing can change in the relationship of
|
||||
* the three task: Child, current parent, and new parent.
|
||||
*/
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ static const char *g_boarddir = NULL; /* Name of board subdirectory */
|
|||
static char *g_configdir = NULL; /* Name of configuration subdirectory */
|
||||
|
||||
static char *g_topdir = NULL; /* Full path to top-level NuttX build directory */
|
||||
static char *g_apppath = NULL; /* Full path to the applicatino directory */
|
||||
static char *g_apppath = NULL; /* Full path to the application directory */
|
||||
static char *g_configtop = NULL; /* Full path to the top-level configuration directory */
|
||||
static char *g_configpath = NULL; /* Full path to the configuration sub-directory */
|
||||
static char *g_verstring = "0.0"; /* Version String */
|
||||
|
|
Loading…
Reference in New Issue