summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-04-22 05:16:14 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-04-22 05:16:14 +0000
commit2a254b9046b5f33d0495a3e28deaff48cc64a76e (patch)
tree295e71b482807bb03720693fc2286843237216a5 /MdePkg/Library/BaseLib
parent7dd8b919e8c7b8b63df22e13782af3b7e085f87f (diff)
downloadedk2-2a254b9046b5f33d0495a3e28deaff48cc64a76e.tar.gz
edk2-2a254b9046b5f33d0495a3e28deaff48cc64a76e.tar.bz2
edk2-2a254b9046b5f33d0495a3e28deaff48cc64a76e.zip
Fix typo in comment.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5108 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/Non-existing.c6
-rw-r--r--MdePkg/Library/BaseLib/LinkedList.c8
-rw-r--r--MdePkg/Library/BaseLib/String.c7
3 files changed, 11 insertions, 10 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/Non-existing.c b/MdePkg/Library/BaseLib/Ia32/Non-existing.c
index 3a835fb7ee..96e90de64d 100644
--- a/MdePkg/Library/BaseLib/Ia32/Non-existing.c
+++ b/MdePkg/Library/BaseLib/Ia32/Non-existing.c
@@ -31,9 +31,9 @@
specified by Context1 and Context2. Context1 and Context2 are optional and
may be 0. The function EntryPoint must never return.
- @param Cs The 16-bit selector to load in the CS before EntryPoint
- is called. The descriptor in the GDT that this selector
- references must be setup for 32-bit protected mode.
+ @param CodeSelector The 16-bit selector to load in the CS before EntryPoint
+ is called. The descriptor in the GDT that this selector
+ references must be setup for 32-bit protected mode.
@param EntryPoint The 64-bit virtual address of the function to call with
the new stack after paging is disabled.
@param Context1 The 64-bit virtual address of the context to pass into
diff --git a/MdePkg/Library/BaseLib/LinkedList.c b/MdePkg/Library/BaseLib/LinkedList.c
index 8190ca345c..5d804109ab 100644
--- a/MdePkg/Library/BaseLib/LinkedList.c
+++ b/MdePkg/Library/BaseLib/LinkedList.c
@@ -89,7 +89,7 @@ IsNodeInList (
If ListHead is NULL, then ASSERT().
- @param ListHead A pointer to the head node of a new doubly linked list.
+ @param List A pointer to the head node of a new doubly linked list.
@return ListHead
@@ -122,7 +122,7 @@ InitializeListHead (
of nodes in ListHead, including the ListHead node, is greater than or
equal to PcdMaximumLinkedListLength, then ASSERT().
- @param ListHead A pointer to the head node of a doubly linked list.
+ @param List A pointer to the head node of a doubly linked list.
@param Entry A pointer to a node that is to be inserted at the beginning
of a doubly linked list.
@@ -162,7 +162,7 @@ InsertHeadList (
of nodes in ListHead, including the ListHead node, is greater than or
equal to PcdMaximumLinkedListLength, then ASSERT().
- @param ListHead A pointer to the head node of a doubly linked list.
+ @param List A pointer to the head node of a doubly linked list.
@param Entry A pointer to a node that is to be added at the end of the
doubly linked list.
@@ -269,7 +269,7 @@ GetNextNode (
in List, including the List node, is greater than or equal to
PcdMaximumLinkedListLength, then ASSERT().
- @param ListHead A pointer to the head node of a doubly linked list.
+ @param List A pointer to the head node of a doubly linked list.
@retval TRUE The linked list is empty.
@retval FALSE The linked list is not empty.
diff --git a/MdePkg/Library/BaseLib/String.c b/MdePkg/Library/BaseLib/String.c
index 9fca968074..94471f3329 100644
--- a/MdePkg/Library/BaseLib/String.c
+++ b/MdePkg/Library/BaseLib/String.c
@@ -1019,7 +1019,7 @@ InternalAsciiIsHexaDecimalDigitCharacter (
@param Source Pointer to a Null-terminated Unicode string.
@param Destination Pointer to a Null-terminated ASCII string.
- @reture Destination
+ @return Destination
**/
CHAR8 *
@@ -1418,7 +1418,8 @@ AsciiStriCmp (
@param FirstString Pointer to a Null-terminated ASCII string.
@param SecondString Pointer to a Null-terminated ASCII string.
-
+ @param Length Maximum number of ASCII characters to compare.
+
@retval 0 FirstString is identical to SecondString.
@retval !=0 FirstString is not identical to SecondString.
@@ -1980,7 +1981,7 @@ AsciiStrHexToUint64 (
@param Source Pointer to a Null-terminated ASCII string.
@param Destination Pointer to a Null-terminated Unicode string.
- @reture Destination
+ @return Destination
**/
CHAR16 *