summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2020-09-08 23:09:21 +0200
committerFederico Caselli <cfederico87@gmail.com>2020-09-08 23:09:21 +0200
commit17f7faf3df8dc3d30e632c60a5d69d342876ad3d (patch)
treefe78e49bf43f8e4d91f7fece030e14717d6181ae /lib
parent0d56a62f721ee6c91d8a8b6a407b959c9215b3b6 (diff)
downloadsqlalchemy-17f7faf3df8dc3d30e632c60a5d69d342876ad3d.tar.gz
Fix typo in :paramref:`_engine.create_engine.isolation_level` names
Fixes: #5563 Change-Id: I29204fdf679d750c66ed17daf70bc8d7cb1b7f65
Diffstat (limited to 'lib')
-rw-r--r--lib/sqlalchemy/engine/create.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/engine/create.py b/lib/sqlalchemy/engine/create.py
index e31f3a12d..d6f1cb657 100644
--- a/lib/sqlalchemy/engine/create.py
+++ b/lib/sqlalchemy/engine/create.py
@@ -254,8 +254,8 @@ def create_engine(url, **kwargs):
:param isolation_level: this string parameter is interpreted by various
dialects in order to affect the transaction isolation level of the
database connection. The parameter essentially accepts some subset of
- these string arguments: ``"SERIALIZABLE"``, ``"REPEATABLE_READ"``,
- ``"READ_COMMITTED"``, ``"READ_UNCOMMITTED"`` and ``"AUTOCOMMIT"``.
+ these string arguments: ``"SERIALIZABLE"``, ``"REPEATABLE READ"``,
+ ``"READ COMMITTED"``, ``"READ UNCOMMITTED"`` and ``"AUTOCOMMIT"``.
Behavior here varies per backend, and
individual dialects should be consulted directly.