summaryrefslogtreecommitdiffstats
path: root/EdkCompatibilityPkg/Foundation/Efi/Include/EfiTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Efi/Include/EfiTypes.h')
-rw-r--r--EdkCompatibilityPkg/Foundation/Efi/Include/EfiTypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Efi/Include/EfiTypes.h b/EdkCompatibilityPkg/Foundation/Efi/Include/EfiTypes.h
index 026854a32a..81d3b00f2a 100644
--- a/EdkCompatibilityPkg/Foundation/Efi/Include/EfiTypes.h
+++ b/EdkCompatibilityPkg/Foundation/Efi/Include/EfiTypes.h
@@ -262,12 +262,12 @@ typedef struct {
#define EFI_PAGES_TO_SIZE(a) ( (a) << EFI_PAGE_SHIFT)
//
-// ALIGN_POINTER - aligns a pointer to the lowest boundry
+// ALIGN_POINTER - aligns a pointer to the lowest boundary
//
#define ALIGN_POINTER(p, s) ((VOID *) (p + ((s - ((UINTN) p)) & (s - 1))))
//
-// ALIGN_VARIABLE - aligns a variable up to the next natural boundry for int size of a processor
+// ALIGN_VARIABLE - aligns a variable up to the next natural boundary for int size of a processor
//
#define ALIGN_VARIABLE(Value, Adjustment) \
(UINTN) Adjustment = 0; \