Fixed typo in docstring in db/transaction.py

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3135 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-06-16 19:35:57 +00:00
parent bca5327b21
commit 72307a6eee
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ def is_managed():
def managed(flag=True): def managed(flag=True):
""" """
Puts the transaction manager into a manual state: managed transactions have 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 management and there is a pending commit/rollback, the data will be
commited. commited.
""" """