summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Library/DebugLib.h
diff options
context:
space:
mode:
authorpkandel <pkandel@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-04 16:16:15 +0000
committerpkandel <pkandel@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-04 16:16:15 +0000
commit1a2f870c9babe077c2d3abea23b6e8e044778341 (patch)
treedb545c66ef72b32da3dbd2406b256c3430702af0 /MdePkg/Include/Library/DebugLib.h
parent7076244ef4005642712f32591abbd8188d6b6f40 (diff)
downloadedk2-platforms-1a2f870c9babe077c2d3abea23b6e8e044778341.tar.xz
Second set of changes based on a review of the code comments in the Include directory for typos, grammar issues, and language clarity.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8467 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/DebugLib.h')
-rw-r--r--MdePkg/Include/Library/DebugLib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Include/Library/DebugLib.h b/MdePkg/Include/Library/DebugLib.h
index e25713f5c5..9cb9027b70 100644
--- a/MdePkg/Include/Library/DebugLib.h
+++ b/MdePkg/Include/Library/DebugLib.h
@@ -216,10 +216,10 @@ DebugClearMemoryEnabled (
/**
Internal worker macro that calls DebugAssert().
- This macro calls DebugAssert() passing in the filename, line number, and
- expression that evailated to FALSE.
+ This macro calls DebugAssert(), passing in the filename, line number, and an
+ expression that evaluated to FALSE.
- @param Expression Boolean expression that evailated to FALSE
+ @param Expression Boolean expression that evaluated to FALSE
**/
#define _ASSERT(Expression) DebugAssert (__FILE__, __LINE__, #Expression)
@@ -239,7 +239,7 @@ DebugClearMemoryEnabled (
/**
- Macro that calls DebugAssert() if a expression evaluates to FALSE.
+ Macro that calls DebugAssert() if an expression evaluates to FALSE.
If the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set,
then this macro evaluates the Boolean expression specified by Expression. If