From: Yeongbae Jeon Date: Sat, 9 Nov 2024 16:49:20 +0000 (+0900) Subject: Fix source comment/doc typos (#12072) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef23611a6bf8358dd05e0fc13384f1eb1925e1ff;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix source comment/doc typos (#12072) minor spelling corrections in comments and doc --- diff --git a/lib/sqlalchemy/engine/default.py b/lib/sqlalchemy/engine/default.py index df4bd41516..616d284d31 100644 --- a/lib/sqlalchemy/engine/default.py +++ b/lib/sqlalchemy/engine/default.py @@ -257,7 +257,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. diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py index 58d79cdd94..8fa36f3cda 100644 --- a/lib/sqlalchemy/engine/interfaces.py +++ b/lib/sqlalchemy/engine/interfaces.py @@ -1118,7 +1118,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 @@ -2499,7 +2499,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``.