diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-24 08:28:18 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-24 08:28:18 +0000 |
commit | ab95d5f223df15bc4d03eced05dde38bd95001de (patch) | |
tree | 0cf4bfe00088dcb14a41a12694fcf17d7430ff9a /MdePkg/Include | |
parent | badcbfb23811c02780d4ea7f20cd6ccf7b86f346 (diff) | |
download | edk2-ab95d5f223df15bc4d03eced05dde38bd95001de.tar.gz edk2-ab95d5f223df15bc4d03eced05dde38bd95001de.tar.bz2 edk2-ab95d5f223df15bc4d03eced05dde38bd95001de.zip |
Fix typos in the Memory Allocation Library comments
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6702 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/Library/MemoryAllocationLib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Include/Library/MemoryAllocationLib.h b/MdePkg/Include/Library/MemoryAllocationLib.h index 9b8e3aa62b..f9c791eedf 100644 --- a/MdePkg/Include/Library/MemoryAllocationLib.h +++ b/MdePkg/Include/Library/MemoryAllocationLib.h @@ -381,7 +381,7 @@ AllocateReservedCopyPool ( /**
Reallocates a buffer of type EfiBootServicesData.
- Allocates and zeros the number bytes specified by NewSize with the memmory type
+ Allocates and zeros the number bytes specified by NewSize from memory of type
EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
NewSize bytes are copied from OldBuffer to the newly allocated buffer, and
OldBuffer is freed. A pointer to the newly allocated buffer is returned.
@@ -411,7 +411,7 @@ ReallocatePool ( /**
Reallocates a buffer of type EfiRuntimeServicesData.
- Allocates and zeros the number bytes specified by NewSize with the memmory type
+ Allocates and zeros the number bytes specified by NewSize from memory of type
EfiRuntimeServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
NewSize bytes are copied from OldBuffer to the newly allocated buffer, and
OldBuffer is freed. A pointer to the newly allocated buffer is returned.
@@ -441,7 +441,7 @@ ReallocateRuntimePool ( /**
Reallocates a buffer of type EfiReservedMemoryType.
- Allocates and zeros the number bytes specified by NewSize with the memmory type
+ Allocates and zeros the number bytes specified by NewSize from memory of type
EfiReservedMemoryType. If OldBuffer is not NULL, then the smaller of OldSize and
NewSize bytes are copied from OldBuffer to the newly allocated buffer, and
OldBuffer is freed. A pointer to the newly allocated buffer is returned.
|