summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-11-26 17:39:17 +0000
committerBenjamin Peterson <benjamin@python.org>2008-11-26 17:39:17 +0000
commit78f98a4d7a436688792b2224d8e105b1a150b0a5 (patch)
treee27374c1f8fc7dfa833ef7c8509281a73cb9e665
parent7fab0dcdd4ecef916f5986f7d00f969f6127c1fa (diff)
downloadcpython-git-78f98a4d7a436688792b2224d8e105b1a150b0a5.tar.gz
fix typo in sqlite3 docs
-rw-r--r--Doc/library/sqlite3.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 6235f9ed3e..19b80abbe5 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -223,8 +223,8 @@ Connection Objects
.. attribute:: Connection.isolation_level
- Get or set the current isolation level. :const:`None` for autocommit mode or one of
- "DEFERRED", "IMMEDIATE" or "EXLUSIVE". See section
+ Get or set the current isolation level. :const:`None` for autocommit mode or
+ one of "DEFERRED", "IMMEDIATE" or "EXCLUSIVE". See section
:ref:`sqlite3-controlling-transactions` for a more detailed explanation.