]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Ecc/Database.py
BaseTools: Various typo
[mirror_edk2.git] / BaseTools / Source / Python / Ecc / Database.py
index 9d4acac7b775b043de81291789877ea5f1491b8d..2a6b1198d84e1f1691768360862013e728230c26 100644 (file)
@@ -39,7 +39,7 @@ DATABASE_PATH = "Ecc.db"
 \r
 ## Database\r
 #\r
-# This class defined the ECC databse\r
+# This class defined the ECC 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=4096")\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
@@ -214,7 +214,7 @@ class Database(object):
 \r
     ## UpdateIdentifierBelongsToFunction\r
     #\r
-    # Update the field "BelongsToFunction" for each Indentifier\r
+    # Update the field "BelongsToFunction" for each Identifier\r
     #\r
     #\r
     def UpdateIdentifierBelongsToFunction_disabled(self):\r
@@ -267,7 +267,7 @@ class Database(object):
 \r
     ## UpdateIdentifierBelongsToFunction\r
     #\r
-    # Update the field "BelongsToFunction" for each Indentifier\r
+    # Update the field "BelongsToFunction" for each Identifier\r
     #\r
     #\r
     def UpdateIdentifierBelongsToFunction(self):\r