magic-removal: Fixed typo in modeltests/transactions/models.py docstring

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2463 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-03-02 04:20:22 +00:00
parent 8c8afa22c0
commit 25391d5e98
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ XXX. Transactions
Django handles transactions in three different ways. The default is to commit
each transaction upon a write, but you can decorate a function to get
commit-on-sucess behavior, or else you can manage the transaction manually.
commit-on-success behavior. Alternatively, you can manage the transaction
manually.
"""
from django.db import models