summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-06-16 19:35:57 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-06-16 19:35:57 +0000
commit72307a6eee51ae65e0cbd8c6d746a21e526b5cac (patch)
tree3e16f5f06d0997d57da3bb97cbc21c75158b22b6
parentbca5327b21eb2e3ee18292cbe532d6d0071201d8 (diff)
Fixed typo in docstring in db/transaction.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3135 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/transaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/transaction.py b/django/db/transaction.py
index 60a743c42a..4a0658e1c3 100644
--- a/django/db/transaction.py
+++ b/django/db/transaction.py
@@ -114,7 +114,7 @@ def is_managed():
def managed(flag=True):
"""
Puts the transaction manager into a manual state: managed transactions have
- to be committed explicitely by the user. If you switch off transaction
+ to be committed explicitly by the user. If you switch off transaction
management and there is a pending commit/rollback, the data will be
commited.
"""