]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
[docs] Typo: Update session_transaction.rst (#10185)
authorGabriel Izoton <gabrielizotongo@gmail.com>
Fri, 4 Aug 2023 17:48:41 +0000 (14:48 -0300)
committerGitHub <noreply@github.com>
Fri, 4 Aug 2023 17:48:41 +0000 (19:48 +0200)
Fixed typo: `tranasction` -> `transaction`

doc/build/orm/session_transaction.rst

index cb0f0fac24188ff7b8ae94cce3d505c347a39a15..85d1cf50be9c0bbdf5fc8f397a037a4e8fda2131 100644 (file)
@@ -175,7 +175,7 @@ an error is raised, the savepoint is rolled back and the state of the
 
 This pattern is ideal for situations such as using PostgreSQL and
 catching :class:`.IntegrityError` to detect duplicate rows; PostgreSQL normally
-aborts the entire tranasction when such an error is raised, however when using
+aborts the entire transaction when such an error is raised, however when using
 SAVEPOINT, the outer transaction is maintained.   In the example below
 a list of data is persisted into the database, with the occasional
 "duplicate primary key" record skipped, without rolling back the entire