From 25391d5e98081679af925849753ea4b41df5fde0 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 2 Mar 2006 04:20:22 +0000 Subject: [PATCH] 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 --- tests/modeltests/transactions/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/modeltests/transactions/models.py b/tests/modeltests/transactions/models.py index 6c5d1de0a5..22f38f7a0c 100644 --- a/tests/modeltests/transactions/models.py +++ b/tests/modeltests/transactions/models.py @@ -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