]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Eot/Database.py
BaseTools: Various typo
[mirror_edk2.git] / BaseTools / Source / Python / Eot / Database.py
index 65bac9c127cb01d5942d2c24372c10c1532497bc..f6191161f2aba4b1d65e6f53b6c18c7601ca5e1b 100644 (file)
@@ -38,7 +38,7 @@ DATABASE_PATH = "Eot.db"
 \r
 ## Database class\r
 #\r
-# This class defined the EOT databse\r
+# This class defined the EOT database\r
 # During the phase of initialization, the database will create all tables and\r
 # insert all records of table DataModel\r
 #\r
@@ -83,7 +83,7 @@ class Database(object):
         self.Conn = sqlite3.connect(self.DbPath, isolation_level = 'DEFERRED')\r
         self.Conn.execute("PRAGMA page_size=8192")\r
         self.Conn.execute("PRAGMA synchronous=OFF")\r
-        # to avoid non-ascii charater conversion error\r
+        # to avoid non-ascii character conversion error\r
         self.Conn.text_factory = str\r
         self.Cur = self.Conn.cursor()\r
 \r
@@ -198,7 +198,7 @@ class Database(object):
 \r
     ## UpdateIdentifierBelongsToFunction() method\r
     #\r
-    #  Update the field "BelongsToFunction" for each Indentifier\r
+    #  Update the field "BelongsToFunction" for each Identifier\r
     #\r
     #  @param self: The object pointer\r
     #\r