diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2019-04-22 09:12:55 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2019-04-22 09:12:55 +0000 |
commit | a7ce9444af2bcd30e0255c712fbab3dba1a82305 (patch) | |
tree | ac16245236eecf8d36e8c39c9b547df9e1b951ce /os/common | |
parent | f76ba2109ec210165febd254f7a0155d82355e5e (diff) | |
download | ChibiOS-a7ce9444af2bcd30e0255c712fbab3dba1a82305.tar.gz ChibiOS-a7ce9444af2bcd30e0255c712fbab3dba1a82305.tar.bz2 ChibiOS-a7ce9444af2bcd30e0255c712fbab3dba1a82305.zip |
Fixed typo.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_19.1.x@12750 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
Diffstat (limited to 'os/common')
-rw-r--r-- | os/common/ports/ARM/chcore.h | 2 | ||||
-rw-r--r-- | os/common/ports/ARMCAx-TZ/chcore.h | 2 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/chcore_v6m.h | 2 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/chcore_v7m.h | 2 | ||||
-rw-r--r-- | os/common/ports/AVR/chcore.h | 2 | ||||
-rw-r--r-- | os/common/ports/SIMIA32/chcore.h | 2 | ||||
-rw-r--r-- | os/common/ports/e200/chcore.h | 2 | ||||
-rw-r--r-- | os/common/ports/templates/chcore.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/os/common/ports/ARM/chcore.h b/os/common/ports/ARM/chcore.h index d9f56d016..35797deac 100644 --- a/os/common/ports/ARM/chcore.h +++ b/os/common/ports/ARM/chcore.h @@ -49,7 +49,7 @@ /**
* @brief Stack alignment constant.
- * @note It is the alignement required for the stack pointer.
+ * @note It is the alignment required for the stack pointer.
*/
#define PORT_STACK_ALIGN sizeof (stkalign_t)
diff --git a/os/common/ports/ARMCAx-TZ/chcore.h b/os/common/ports/ARMCAx-TZ/chcore.h index 67f6395f9..7abfb7617 100644 --- a/os/common/ports/ARMCAx-TZ/chcore.h +++ b/os/common/ports/ARMCAx-TZ/chcore.h @@ -49,7 +49,7 @@ /**
* @brief Stack alignment constant.
- * @note It is the alignement required for the stack pointer.
+ * @note It is the alignment required for the stack pointer.
*/
#define PORT_STACK_ALIGN sizeof (stkalign_t)
diff --git a/os/common/ports/ARMCMx/chcore_v6m.h b/os/common/ports/ARMCMx/chcore_v6m.h index d62fc719a..727de7e3e 100644 --- a/os/common/ports/ARMCMx/chcore_v6m.h +++ b/os/common/ports/ARMCMx/chcore_v6m.h @@ -49,7 +49,7 @@ /**
* @brief Stack alignment constant.
- * @note It is the alignement required for the stack pointer.
+ * @note It is the alignment required for the stack pointer.
*/
#define PORT_STACK_ALIGN sizeof (stkalign_t)
diff --git a/os/common/ports/ARMCMx/chcore_v7m.h b/os/common/ports/ARMCMx/chcore_v7m.h index 408568cc8..408070b7e 100644 --- a/os/common/ports/ARMCMx/chcore_v7m.h +++ b/os/common/ports/ARMCMx/chcore_v7m.h @@ -49,7 +49,7 @@ /**
* @brief Stack alignment constant.
- * @note It is the alignement required for the stack pointer.
+ * @note It is the alignment required for the stack pointer.
*/
#define PORT_STACK_ALIGN sizeof (stkalign_t)
diff --git a/os/common/ports/AVR/chcore.h b/os/common/ports/AVR/chcore.h index aa33a2ee5..b5f70fc9a 100644 --- a/os/common/ports/AVR/chcore.h +++ b/os/common/ports/AVR/chcore.h @@ -54,7 +54,7 @@ extern bool __avr_in_isr; /**
* @brief Stack alignment constant.
- * @note It is the alignement required for the stack pointer.
+ * @note It is the alignment required for the stack pointer.
*/
#define PORT_STACK_ALIGN 1U
diff --git a/os/common/ports/SIMIA32/chcore.h b/os/common/ports/SIMIA32/chcore.h index e6b254c33..e80419332 100644 --- a/os/common/ports/SIMIA32/chcore.h +++ b/os/common/ports/SIMIA32/chcore.h @@ -49,7 +49,7 @@ /**
* @brief Stack alignment constant.
- * @note It is the alignement required for the stack pointer.
+ * @note It is the alignment required for the stack pointer.
*/
#define PORT_STACK_ALIGN sizeof (stkalign_t)
diff --git a/os/common/ports/e200/chcore.h b/os/common/ports/e200/chcore.h index dd6861fd2..f7832ef9c 100644 --- a/os/common/ports/e200/chcore.h +++ b/os/common/ports/e200/chcore.h @@ -55,7 +55,7 @@ /**
* @brief Stack alignment constant.
- * @note It is the alignement required for the stack pointer.
+ * @note It is the alignment required for the stack pointer.
*/
#define PORT_STACK_ALIGN sizeof (stkalign_t)
diff --git a/os/common/ports/templates/chcore.h b/os/common/ports/templates/chcore.h index e3dc48d8e..bcc8db448 100644 --- a/os/common/ports/templates/chcore.h +++ b/os/common/ports/templates/chcore.h @@ -51,7 +51,7 @@ /**
* @brief Stack alignment constant.
- * @note It is the alignement required for the stack pointer.
+ * @note It is the alignment required for the stack pointer.
*/
#define PORT_STACK_ALIGN sizeof (stkalign_t)
|