]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
doc fixes
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 11 Aug 2025 14:15:12 +0000 (10:15 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 11 Aug 2025 14:15:12 +0000 (10:15 -0400)
Change-Id: Iee65f09ea17bfa7a39fe3da05f22007f92b76f29

doc/build/changelog/unreleased_20/12711.rst
doc/build/core/connections.rst
lib/sqlalchemy/engine/interfaces.py
lib/sqlalchemy/sql/base.py

index f39a3b1ed178e054a78cac9c4c1b7302b63d6628..fce567f775722914e9140c9a6d2d9aec0971e03b 100644 (file)
@@ -3,6 +3,6 @@
     :tickets: 12711
 
     Extended :class:`_oracle.VECTOR` to support sparse vectors. This update
-    introduces :class:_oracle.VectorStorageType to specify sparse or dense
+    introduces :class:`_oracle.VectorStorageType` to specify sparse or dense
     storage and added :class:`_oracle.SparseVector`. Pull request courtesy
     Suraj Shaw.
index e1c25474e525348aad1925e2f0d3307fb5f1123c..86e27a280e743cac7abcef543bd45fbbcc17484d 100644 (file)
@@ -544,7 +544,7 @@ When seeking this pattern, it should be preferred to set AUTOCOMMIT engine
 wide using the :paramref:`.create_engine.isolation_level` so that pooled
 connections are permanently set in autocommit mode.   The SQLAlchemy connection
 pool as well as the :class:`.Connection` will still seek to invoke the DBAPI
-``.rollback()`` method upon connection :term:`reset`, as their behavior
+``.rollback()`` method upon connection :term:`release`, as their behavior
 remains agonstic of the isolation level that's configured on the connection.
 As this rollback still incurs a network round trip under most if not all
 DBAPI drivers, this additional network trip may be disabled using the
index c437a4f79b0a9ff94f0a77bcd97db165c9892cf8..5d7f5c97859fa43294bae449bd2c97340b63ecaa 100644 (file)
@@ -775,7 +775,7 @@ class Dialect(EventTarget):
     """the isolation that is implicitly present on new connections"""
 
     skip_autocommit_rollback: bool
-    """Whether or not the :paramref:`.create_engine.skip_autocommit_rollback
+    """Whether or not the :paramref:`.create_engine.skip_autocommit_rollback`
     parameter was set.
 
     .. versionadded:: 2.0.43
index 061b53bd9f23c74843f216da0247f264212afb12..b016c291b0794ae10860ed288046f42049a0cc34 100644 (file)
@@ -1234,8 +1234,7 @@ class SyntaxExtension(roles.SyntaxExtensionRole):
         )
 
     def apply_to_insert(self, insert_stmt: Insert) -> None:
-        """Apply this :class:`.SyntaxExtension` to an
-        :class:`_sql.Insert`"""
+        """Apply this :class:`.SyntaxExtension` to an :class:`_sql.Insert`"""
         raise NotImplementedError(
             f"Extension {type(self).__name__} cannot be applied to insert"
         )