]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.c
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[mirror_edk2.git] / MdePkg / Library / BaseExtractGuidedSectionLib / BaseExtractGuidedSectionLib.c
index ce289d2d6cfde2a5b96c36d96d1f237290e69046..c3978c9b501dff39308c660ce10adda6d2cd9e51 100644 (file)
@@ -34,7 +34,7 @@ typedef struct {
   the registered guid and Handler list. When it is initialized, it will be directly returned. \r
   Or, HandlerInfo table will be initialized in this function.\r
 \r
   the registered guid and Handler list. When it is initialized, it will be directly returned. \r
   Or, HandlerInfo table will be initialized in this function.\r
 \r
-  @param[in, out]  InfoPointer   The pointer to the handler info structure.\r
+  @param[in, out]  InfoPointer   The pointer to the handler information structure.\r
 \r
   @retval  RETURN_SUCCESS            HandlerInfo table can be used to store guid and function tables.\r
   @retval  RETURN_OUT_OF_RESOURCES   HandlerInfo table address is not writable.\r
 \r
   @retval  RETURN_SUCCESS            HandlerInfo table can be used to store guid and function tables.\r
   @retval  RETURN_OUT_OF_RESOURCES   HandlerInfo table address is not writable.\r
@@ -52,23 +52,23 @@ GetExtractGuidedSectionHandlerInfo (
   HandlerInfo = (EXTRACT_GUIDED_SECTION_HANDLER_INFO*)(VOID*)(UINTN) PcdGet64 (PcdGuidedExtractHandlerTableAddress);\r
 \r
   //\r
   HandlerInfo = (EXTRACT_GUIDED_SECTION_HANDLER_INFO*)(VOID*)(UINTN) PcdGet64 (PcdGuidedExtractHandlerTableAddress);\r
 \r
   //\r
-  // First check whether the handler info structure is initialized.\r
+  // First check whether the handler information structure is initialized.\r
   //\r
   if (HandlerInfo->Signature == EXTRACT_HANDLER_INFO_SIGNATURE) {\r
     //\r
   //\r
   if (HandlerInfo->Signature == EXTRACT_HANDLER_INFO_SIGNATURE) {\r
     //\r
-    // The handler info has been initialized and is returned.\r
+    // The handler information has been initialized and is returned.\r
     //\r
     *InfoPointer = HandlerInfo;\r
     return RETURN_SUCCESS;\r
   }\r
 \r
   //\r
     //\r
     *InfoPointer = HandlerInfo;\r
     return RETURN_SUCCESS;\r
   }\r
 \r
   //\r
-  // Try to initialize the handler info structure\r
+  // Try to initialize the handler information structure\r
   //\r
   HandlerInfo->Signature = EXTRACT_HANDLER_INFO_SIGNATURE;\r
   if (HandlerInfo->Signature != EXTRACT_HANDLER_INFO_SIGNATURE) {\r
     //\r
   //\r
   HandlerInfo->Signature = EXTRACT_HANDLER_INFO_SIGNATURE;\r
   if (HandlerInfo->Signature != EXTRACT_HANDLER_INFO_SIGNATURE) {\r
     //\r
-    // The handler info structure was not writeable because the memory is not ready.\r
+    // The handler information structure was not writeable because the memory is not ready.\r
     //\r
     *InfoPointer = NULL;\r
     return RETURN_OUT_OF_RESOURCES;\r
     //\r
     *InfoPointer = NULL;\r
     return RETURN_OUT_OF_RESOURCES;\r
@@ -284,7 +284,7 @@ ExtractGuidedSectionGetInfo (
   for (Index = 0; Index < HandlerInfo->NumberOfExtractHandler; Index ++) {\r
     if (CompareGuid (HandlerInfo->ExtractHandlerGuidTable + Index, &(((EFI_GUID_DEFINED_SECTION *) InputSection)->SectionDefinitionGuid))) {\r
       //\r
   for (Index = 0; Index < HandlerInfo->NumberOfExtractHandler; Index ++) {\r
     if (CompareGuid (HandlerInfo->ExtractHandlerGuidTable + Index, &(((EFI_GUID_DEFINED_SECTION *) InputSection)->SectionDefinitionGuid))) {\r
       //\r
-      // Call the match handler to get info for the input section data.\r
+      // Call the match handler to get information for the input section data.\r
       //\r
       return HandlerInfo->ExtractGetInfoHandlerTable [Index] (\r
                 InputSection,\r
       //\r
       return HandlerInfo->ExtractGetInfoHandlerTable [Index] (\r
                 InputSection,\r