diff options
author | Antoine Cœur <coeur@gmx.fr> | 2019-07-04 19:43:48 +0800 |
---|---|---|
committer | Feng, Bob C <bob.c.feng@intel.com> | 2019-07-08 08:59:29 +0800 |
commit | 2d53d54a5bf5f9ba9379e465f49ac9cdc55035de (patch) | |
tree | 86ad5a6b709e94b6e0d8195afa287c9784ed8e4f /BaseTools/Source/Python/BPDG/GenVpd.py | |
parent | d031fc07eb83c9d13bff3ebac25da458d5a47917 (diff) | |
download | edk2-2d53d54a5bf5f9ba9379e465f49ac9cdc55035de.tar.gz edk2-2d53d54a5bf5f9ba9379e465f49ac9cdc55035de.tar.bz2 edk2-2d53d54a5bf5f9ba9379e465f49ac9cdc55035de.zip |
BaseTools: Fix various typos
Fix various typos in BaseTools.
Signed-off-by: Cœur <coeur@gmx.fr>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/BPDG/GenVpd.py')
-rw-r--r-- | BaseTools/Source/Python/BPDG/GenVpd.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BaseTools/Source/Python/BPDG/GenVpd.py b/BaseTools/Source/Python/BPDG/GenVpd.py index 887a0c4a1f..049c082f40 100644 --- a/BaseTools/Source/Python/BPDG/GenVpd.py +++ b/BaseTools/Source/Python/BPDG/GenVpd.py @@ -312,7 +312,7 @@ class GenVPD : ##
# Parser the input file which is generated by the build tool. Convert the value of each pcd's
- # from string to it's real format. Also remove the useless line in the input file.
+ # from string to its real format. Also remove the useless line in the input file.
#
def ParserInputFile (self):
count = 0
@@ -483,7 +483,7 @@ class GenVPD : self.PcdFixedOffsetSizeList.sort(key=lambda x: x.PcdBinOffset)
#
- # Sort the un-fixed pcd's offset by it's size.
+ # Sort the un-fixed pcd's offset by its size.
#
self.PcdUnknownOffsetList.sort(key=lambda x: x.PcdBinSize)
@@ -605,7 +605,7 @@ class GenVPD : # Usually it will not enter into this thunk, if so, means it overlapped.
else :
EdkLogger.error("BPDG", BuildToolError.ATTRIBUTE_NOT_AVAILABLE,
- "The offset value definition has overlapped at pcd: %s, it's offset is: %s, in file: %s line: %s" % \
+ "The offset value definition has overlapped at pcd: %s, its offset is: %s, in file: %s line: %s" % \
(eachFixedPcd.PcdCName, eachFixedPcd.PcdOffset, eachFixedPcd.InputFileName, eachFixedPcd.Lineno),
None)
FixOffsetSizeListCount += 1
|