diff options
author | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-09 07:02:26 +0000 |
---|---|---|
committer | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-09 07:02:26 +0000 |
commit | 2fe241a290e6ea77af76ae385ae8b04a76a0c394 (patch) | |
tree | 62331e588063015ce0fb3af19c22ecbb5091c30a /MdePkg/Library | |
parent | 1833218d9313d29499afdd81203decb9b5d9bf07 (diff) | |
download | edk2-2fe241a290e6ea77af76ae385ae8b04a76a0c394.zip edk2-2fe241a290e6ea77af76ae385ae8b04a76a0c394.tar.gz edk2-2fe241a290e6ea77af76ae385ae8b04a76a0c394.tar.bz2 |
Synchronize comment of BaseLib.h and it's implementation to match the Spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6929 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/CpuId.c | 2 | ||||
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/CpuIdEx.c | 2 | ||||
-rw-r--r-- | MdePkg/Library/BaseLib/RRotU32.c | 2 | ||||
-rw-r--r-- | MdePkg/Library/BaseLib/String.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/CpuId.c b/MdePkg/Library/BaseLib/Ia32/CpuId.c index 2473797..6b76928 100644 --- a/MdePkg/Library/BaseLib/Ia32/CpuId.c +++ b/MdePkg/Library/BaseLib/Ia32/CpuId.c @@ -34,7 +34,7 @@ @param RegisterEdx Pointer to the 32-bit EDX value returned by the CPUID
instruction. This is an optional parameter that may be NULL.
- @return Index
+ @return Index.
**/
UINT32
diff --git a/MdePkg/Library/BaseLib/Ia32/CpuIdEx.c b/MdePkg/Library/BaseLib/Ia32/CpuIdEx.c index 1133397..9e31ed1 100644 --- a/MdePkg/Library/BaseLib/Ia32/CpuIdEx.c +++ b/MdePkg/Library/BaseLib/Ia32/CpuIdEx.c @@ -41,7 +41,7 @@ instruction. This is an optional parameter that may be
NULL.
- @return Index
+ @return Index.
**/
UINT32
diff --git a/MdePkg/Library/BaseLib/RRotU32.c b/MdePkg/Library/BaseLib/RRotU32.c index 63f9ce6..7f1226d 100644 --- a/MdePkg/Library/BaseLib/RRotU32.c +++ b/MdePkg/Library/BaseLib/RRotU32.c @@ -27,7 +27,7 @@ @param Operand The 32-bit operand to rotate right.
@param Count The number of bits to rotate right.
- @return Operand >>> Count
+ @return Operand >> Count
**/
UINT32
diff --git a/MdePkg/Library/BaseLib/String.c b/MdePkg/Library/BaseLib/String.c index fb3211d..9f1ad6c 100644 --- a/MdePkg/Library/BaseLib/String.c +++ b/MdePkg/Library/BaseLib/String.c @@ -603,7 +603,7 @@ InternalIsHexaDecimalDigitCharacter ( of the Unicode string specified by String as a decimal number. The format
of the input Unicode string String is:
- [spaces] [decimal digits].
+ [spaces] [decimal digits].
The valid decimal digit character is in the range [0-9]. The
function will ignore the pad space, which includes spaces or
@@ -685,7 +685,7 @@ StrDecimalToUintn ( of the Unicode string specified by String as a decimal number. The format
of the input Unicode string String is:
- [spaces] [decimal digits].
+ [spaces] [decimal digits].
The valid decimal digit character is in the range [0-9]. The
function will ignore the pad space, which includes spaces or
|