]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix source comment/doc typos (#12072)
authorYeongbae Jeon <ybjeon01@naver.com>
Sat, 9 Nov 2024 16:49:20 +0000 (01:49 +0900)
committerFederico Caselli <cfederico87@gmail.com>
Sat, 9 Nov 2024 16:50:56 +0000 (17:50 +0100)
minor spelling corrections in comments and doc

(cherry picked from commit ef23611a6bf8358dd05e0fc13384f1eb1925e1ff)

lib/sqlalchemy/engine/default.py
lib/sqlalchemy/engine/interfaces.py

index d42a3138bc13ecadb582a8557978de6102f24652..9b769265fa068e36071f78a0f84c302a9d5a7a03 100644 (file)
@@ -254,7 +254,7 @@ class DefaultDialect(Dialect):
     default_schema_name: Optional[str] = None
 
     # indicates symbol names are
-    # UPPERCASEd if they are case insensitive
+    # UPPERCASED if they are case insensitive
     # within the database.
     # if this is True, the methods normalize_name()
     # and denormalize_name() must be provided.
index 17a133f27a954b3839a3cdd099c87ae3a457ebb5..6696a787064c103240e2816861fc6a489ca0d82d 100644 (file)
@@ -1117,7 +1117,7 @@ class Dialect(EventTarget):
     supports_constraint_comments: bool
     """Indicates if the dialect supports comment DDL on constraints.
 
-    .. versionadded: 2.0
+    .. versionadded:: 2.0
     """
 
     _has_events = False
@@ -2498,7 +2498,7 @@ class Dialect(EventTarget):
           ``REPEATABLE READ``.  isolation level names will have underscores
           converted to spaces before being passed along to the dialect.
         * The names for the four standard isolation names to the extent that
-          they are supported by the backend should be ``READ UNCOMMITTED``
+          they are supported by the backend should be ``READ UNCOMMITTED``,
           ``READ COMMITTED``, ``REPEATABLE READ``, ``SERIALIZABLE``
         * if the dialect supports an autocommit option it should be provided
           using the isolation level name ``AUTOCOMMIT``.