]> git.proxmox.com Git - mirror_edk2.git/blobdiff - SignedCapsulePkg/Library/IniParsingLib/IniParsingLib.c
SignedCapsulePkg: Fix various typos
[mirror_edk2.git] / SignedCapsulePkg / Library / IniParsingLib / IniParsingLib.c
index 757d65a20647fc58243f06db357c2a3de66a16c7..bea45e0d3be3f0f8c662c46d85436e9246066101 100644 (file)
@@ -14,7 +14,7 @@
          3.1) an ASCII String. The valid format is [A-Za-z0-9_]+\r
          3.2) a GUID. The valid format is xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, where x is [A-Fa-f0-9]\r
          3.3) a decimal value. The valid format is [0-9]+\r
-         3.4) a heximal value. The valid format is 0x[A-Fa-f0-9]+\r
+         3.4) a hexadecimal value. The valid format is 0x[A-Fa-f0-9]+\r
       4) '#' or ';' can be used as comment at anywhere.\r
       5) TAB(0x20) or SPACE(0x9) can be used as separator.\r
       6) LF(\n, 0xA) or CR(\r, 0xD) can be used as line break.\r
@@ -165,13 +165,13 @@ IsValidDecimalString (
 }\r
 \r
 /**\r
-  Return if the heximal string is valid.\r
+  Return if the hexadecimal string is valid.\r
 \r
-  @param[in] Hex     The heximal string to be checked.\r
-  @param[in] Length  The length of heximal string in bytes.\r
+  @param[in] Hex     The hexadecimal string to be checked.\r
+  @param[in] Length  The length of hexadecimal string in bytes.\r
 \r
-  @retval TRUE   The heximal string is valid.\r
-  @retval FALSE  The heximal string is invalid.\r
+  @retval TRUE   The hexadecimal string is valid.\r
+  @retval FALSE  The hexadecimal string is invalid.\r
 **/\r
 BOOLEAN\r
 IsValidHexString (\r
@@ -388,7 +388,7 @@ ProfileGetLine (
 /**\r
   Trim Buffer by removing all CR, LF, TAB, and SPACE chars in its head and tail.\r
 \r
-  @param[in, out] Buffer          On input,  buffer data to be trimed.\r
+  @param[in, out] Buffer          On input,  buffer data to be trimmed.\r
                                   On output, the trimmed buffer.\r
   @param[in, out] BufferSize      On input,  size of original buffer data.\r
                                   On output, size of the trimmed buffer.\r
@@ -1166,14 +1166,14 @@ GetDecimalUintnFromDataFile (
 }\r
 \r
 /**\r
-  Get section entry heximal UINTN value.\r
+  Get section entry hexadecimal UINTN value.\r
 \r
   @param[in]  Context         INI Config file context.\r
   @param[in]  SectionName     Section name.\r
   @param[in]  EntryName       Section entry name.\r
-  @param[out] Data            Point to the got heximal UINTN value.\r
+  @param[out] Data            Point to the got hexadecimal UINTN value.\r
 \r
-  @retval EFI_SUCCESS    Section entry heximal UINTN value is got.\r
+  @retval EFI_SUCCESS    Section entry hexadecimal UINTN value is got.\r
   @retval EFI_NOT_FOUND  Section is not found.\r
 **/\r
 EFI_STATUS\r
@@ -1210,14 +1210,14 @@ GetHexUintnFromDataFile (
 }\r
 \r
 /**\r
-  Get section entry heximal UINT64 value.\r
+  Get section entry hexadecimal UINT64 value.\r
 \r
   @param[in]  Context         INI Config file context.\r
   @param[in]  SectionName     Section name.\r
   @param[in]  EntryName       Section entry name.\r
-  @param[out] Data            Point to the got heximal UINT64 value.\r
+  @param[out] Data            Point to the got hexadecimal UINT64 value.\r
 \r
-  @retval EFI_SUCCESS    Section entry heximal UINT64 value is got.\r
+  @retval EFI_SUCCESS    Section entry hexadecimal UINT64 value is got.\r
   @retval EFI_NOT_FOUND  Section is not found.\r
 **/\r
 EFI_STATUS\r