IntelFrameworkModulePkg: Fix typos in comments

- stoping -> stopping
- Pointion -> Position
- Arrary -> Array
- reseting -> resetting
- excute -> execute
- isTRUE -> is TRUE
- connectted -> connected
- Retrive -> Retrieve
- dirvers -> drivers
- funciton -> function
- paramter -> parameter
- availible -> available
- permenent -> permanent
- boundry -> boundary

Cc: Jeff Fan <jeff.fan@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Gary Lin <glin@suse.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
This commit is contained in:
Gary Lin
2016-10-19 15:01:15 +08:00
committed by Jeff Fan
parent 3e14edf820
commit 70d3fe9dad
31 changed files with 137 additions and 137 deletions

View File

@ -529,7 +529,7 @@ FvCheck (
continue;
}
//
// double check boundry
// double check boundary
//
if (TestLength < sizeof (EFI_FFS_FILE_HEADER)) {
break;
@ -570,7 +570,7 @@ FvCheck (
DEBUG ((EFI_D_ERROR, "Found a FFS3 formatted file: %g in a non-FFS3 formatted FV.\n", &((EFI_FFS_FILE_HEADER *) Ptr)->Name));
Ptr = Ptr + FFS_FILE2_SIZE (Ptr);
//
// Adjust Ptr to the next 8-byte aligned boundry.
// Adjust Ptr to the next 8-byte aligned boundary.
//
while (((UINTN) Ptr & 0x07) != 0) {
Ptr++;
@ -609,7 +609,7 @@ FvCheck (
}
//
// Adjust Ptr to the next 8-byte aligned boundry.
// Adjust Ptr to the next 8-byte aligned boundary.
//
while (((UINTN) Ptr & 0x07) != 0) {
Ptr++;