summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BasePrintLib
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2009-02-06 03:57:01 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2009-02-06 03:57:01 +0000
commit18e81d77cf2fdb8912f43dfdae40b9793a7c98da (patch)
tree48001741b6d81713b9088ed7ef271a590b3033fb /MdePkg/Library/BasePrintLib
parent693e49cad61cdf6a5ccb47df235f2d352be6adaa (diff)
downloadedk2-18e81d77cf2fdb8912f43dfdae40b9793a7c98da.tar.gz
edk2-18e81d77cf2fdb8912f43dfdae40b9793a7c98da.tar.bz2
edk2-18e81d77cf2fdb8912f43dfdae40b9793a7c98da.zip
Fix typos in comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7447 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BasePrintLib')
-rw-r--r--MdePkg/Library/BasePrintLib/PrintLibInternal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BasePrintLib/PrintLibInternal.c b/MdePkg/Library/BasePrintLib/PrintLibInternal.c
index a9a53866e7..67d60fb255 100644
--- a/MdePkg/Library/BasePrintLib/PrintLibInternal.c
+++ b/MdePkg/Library/BasePrintLib/PrintLibInternal.c
@@ -490,8 +490,8 @@ BasePrintLibVSPrint (
case 'd':
if ((Flags & LONG_TYPE) == 0) {
//
- // 'd','x', and 'X' that are not preceeded by 'l' or 'L' are assumed to be type "int".
- // This assumption is made so the format string defintion is compatible with the ANSI C
+ // 'd','x', and 'X' that are not preceded by 'l' or 'L' are assumed to be type "int".
+ // This assumption is made so the format string definition is compatible with the ANSI C
// Specification for formatted strings. It is recommended that the Base Types be used
// everywhere, but in this one case, compliance with ANSI C is more important, and
// provides an implementation that is compatible with that largest possible set of CPU
@@ -526,8 +526,8 @@ BasePrintLibVSPrint (
Comma = FALSE;
if ((Flags & LONG_TYPE) == 0 && Value < 0) {
//
- // 'd','x', and 'X' that are not preceeded by 'l' or 'L' are assumed to be type "int".
- // This assumption is made so the format string defintion is compatible with the ANSI C
+ // 'd','x', and 'X' that are not preceded by 'l' or 'L' are assumed to be type "int".
+ // This assumption is made so the format string definition is compatible with the ANSI C
// Specification for formatted strings. It is recommended that the Base Types be used
// everywhere, but in this one case, compliance with ANSI C is more important, and
// provides an implementation that is compatible with that largest possible set of CPU